-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: allow moderators to mute users #2300
feat: allow moderators to mute users #2300
Conversation
We're gonna need to pull the "admin comments" soon. Got a lot of catching up to do. ;) |
This comment was marked as off-topic.
This comment was marked as off-topic.
Minor detail: it's |
Terminology confusion 😵💫, thank you for the correction! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should private messages also be muted? I assume we'd want to at least allow messaging RAdmin.
My opinion is loosely held and I could be swayed otherwise, but I think private messages (including to RAdmin) should be muted. I assume this kind of action is going to be taken against a user who has already been warned to stop. Especially now that the UI will show when the mute will be lifted, once a user is muted I'm not sure there will actually be much more to substantiate on. |
I've noticed that there's no way for a moderator to tell that a user is muted without looking directly at the database. The field appears empty when editing the account a subsequent time, and there's no audit trail. Similarly, the |
This PR leverages the existing
UserAccounts.muted_until
field and Folio user management panel to allow moderators to mute users.When a user is muted, they will no longer be able to comment, post or edit on the forum, or send DMs.
To mute a user, visit
http://localhost:64000/manage/users/[USERNAME_HERE]/edit
. There is already a field to set themuted_until
value:Before
After