Add new api key actions

This commit is contained in:
Mubelotix
2025-08-04 15:00:45 +02:00
parent 4ec4710811
commit 737ad3ec19
3 changed files with 31 additions and 4 deletions

View File

@ -137,6 +137,14 @@ impl HeedAuthStore {
Action::ChatsSettingsAll => {
actions.extend([Action::ChatsSettingsGet, Action::ChatsSettingsUpdate]);
}
Action::WebhooksAll => {
actions.extend([
Action::WebhooksGet,
Action::WebhooksUpdate,
Action::WebhooksDelete,
Action::WebhooksCreate,
]);
}
other => {
actions.insert(*other);
}