From 43c20bb3ed6903d709175b32f3639657a6d85c84 Mon Sep 17 00:00:00 2001 From: Mubelotix Date: Tue, 5 Aug 2025 10:39:52 +0200 Subject: [PATCH] Add missing actions in from_repr Co-Authored-By: Thomas Campistron --- crates/meilisearch-types/src/keys.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/meilisearch-types/src/keys.rs b/crates/meilisearch-types/src/keys.rs index 6763e2661..06f621e70 100644 --- a/crates/meilisearch-types/src/keys.rs +++ b/crates/meilisearch-types/src/keys.rs @@ -433,6 +433,9 @@ impl Action { ALL_GET => Some(Self::AllGet), WEBHOOKS_GET => Some(Self::WebhooksGet), WEBHOOKS_UPDATE => Some(Self::WebhooksUpdate), + WEBHOOKS_DELETE => Some(Self::WebhooksDelete), + WEBHOOKS_CREATE => Some(Self::WebhooksCreate), + WEBHOOKS_ALL => Some(Self::WebhooksAll), _otherwise => None, } }