Every old channel will stay in the channel list, regardless if it is empty or unused. I would like to delete those channels.
:+1:
Depends on #206
It's still on an early stage, but it's already possible to delete a channel if you go to Administration -> Rooms
Channel deletion is missing in 0.59.3
Rocket.Chat 0.59.3
It seems, that the buttons have been hidden by css in the adminstration panel (admin->rooms). If you deactivate the rule "visibility: hidden" in .flex-tab .channel-settings .button
, the action buttons appear again.
I tossed the following CSS into our Custom CSS panel as a quick hack to show the buttons without using the browser dev tools.
.button.cancel, .button.primary.save, .button.danger.delete{
visibility: visible !important;
}
Most helpful comment
Rocket.Chat 0.59.3
It seems, that the buttons have been hidden by css in the adminstration panel (admin->rooms). If you deactivate the rule "visibility: hidden" in
.flex-tab .channel-settings .button
, the action buttons appear again.