Hardcore
Active member
We have the ability to "Discourage" users, but no ability to search or batch update them. To list who's currently being discouraged, we have to run a query on the database:
	
	
	
		
It would be handy to have it built in; like searching or batch updating banned users.
Thanks.
				
			
		Code:
	
	SELECT u.user_id, u.username
FROM xf_user_option AS uo
LEFT JOIN xf_user AS u ON (u.user_id = uo.user_id)
WHERE uo.is_discouraged = 1;Thanks.
		
		Upvote
		3
		
	
			 
 
		 
 
		