From 3b26d64a5d1504a324b5ca2606a227fe35409913 Mon Sep 17 00:00:00 2001 From: Mubelotix Date: Mon, 4 Aug 2025 16:39:34 +0200 Subject: [PATCH] Edit reserved webhook message --- crates/meilisearch/src/routes/webhooks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/meilisearch/src/routes/webhooks.rs b/crates/meilisearch/src/routes/webhooks.rs index 2454b624b..fc03f43d0 100644 --- a/crates/meilisearch/src/routes/webhooks.rs +++ b/crates/meilisearch/src/routes/webhooks.rs @@ -186,7 +186,7 @@ enum WebhooksError { TooManyWebhooks, #[error("Too many headers for the webhook `{0}`. Please limit the number of headers to 200.")] TooManyHeaders(Uuid), - #[error("Cannot edit webhook `{0}`. Webhooks prefixed with an underscore are reserved and may not be modified using the API.")] + #[error("Cannot edit webhook `{0}`. The webhook defined from the command line cannot be modified using the API.")] ReservedWebhook(Uuid), #[error("Webhook `{0}` not found.")] WebhookNotFound(Uuid),