Add missing actions in from_repr

Co-Authored-By: Thomas Campistron <irevoire@hotmail.fr>
This commit is contained in:
Mubelotix
2025-08-05 10:39:52 +02:00
parent d340013d8b
commit 43c20bb3ed

View File

@ -433,6 +433,9 @@ impl Action {
ALL_GET => Some(Self::AllGet), ALL_GET => Some(Self::AllGet),
WEBHOOKS_GET => Some(Self::WebhooksGet), WEBHOOKS_GET => Some(Self::WebhooksGet),
WEBHOOKS_UPDATE => Some(Self::WebhooksUpdate), WEBHOOKS_UPDATE => Some(Self::WebhooksUpdate),
WEBHOOKS_DELETE => Some(Self::WebhooksDelete),
WEBHOOKS_CREATE => Some(Self::WebhooksCreate),
WEBHOOKS_ALL => Some(Self::WebhooksAll),
_otherwise => None, _otherwise => None,
} }
} }