Lack of interest Discouraged Users: Search and Batch Update

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

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:
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;
It would be handy to have it built in; like searching or batch updating banned users.

Thanks.
 
Upvote 3
This suggestion has been closed. Votes are no longer accepted.
Top Bottom