mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 19:44:31 +08:00
FEATURE: Allow admins to remove users from chat DMs (#31366)
This feature allows admins to remove users from channels.
This commit is contained in:
@ -254,5 +254,9 @@ module Chat
|
||||
def can_delete_category?(category)
|
||||
super && category.deletable_for_chat?
|
||||
end
|
||||
|
||||
def can_remove_members?(channel)
|
||||
is_admin? && (channel.category_channel? || channel.direct_message_group?)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user