Fix the chat, chats, and chatsSettings actions

This commit is contained in:
Clément Renault
2025-06-03 15:13:42 +02:00
parent d361cbf04e
commit 5ccb24377a
4 changed files with 28 additions and 12 deletions

View File

@@ -125,6 +125,13 @@ impl HeedAuthStore {
Action::MetricsAll => {
actions.insert(Action::MetricsGet);
}
Action::ChatsSettingsAll => {
actions.extend([
Action::ChatsSettingsGet,
Action::ChatsSettingsUpdate,
Action::ChatsSettingsDelete,
]);
}
other => {
actions.insert(*other);
}