|
|
|
|
|
by the_icelander
2359 days ago
|
|
Archiving a channel in Mattermost just sets a flag in the database. Once the bad actor is removed a simple query can restore the channels they archived. Something like: `UPDATE Channels SET DeleteAt = 0 WHERE DeleteAt > [some timestamp]` There's also a CLI command to restore the channels. While this won't keep it from happening it should get things back to normal fairly quickly. |
|