FEATURE: Allow admins to remove users from chat DMs (#31366)

This feature allows admins to remove users from channels.
This commit is contained in:
Ted Johansson
2025-02-20 15:16:57 +08:00
committed by GitHub
parent b8a4b11cbb
commit b5147a4634
16 changed files with 375 additions and 17 deletions

View File

@ -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