From f0b2ac6efb3555c3b1e6ce94a3944825d59fe3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Wed, 24 Aug 2022 17:03:30 +0200 Subject: [PATCH] metrics.all must define metrics.get --- meilisearch-auth/src/store.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meilisearch-auth/src/store.rs b/meilisearch-auth/src/store.rs index dda27f537..a8b27e06a 100644 --- a/meilisearch-auth/src/store.rs +++ b/meilisearch-auth/src/store.rs @@ -126,6 +126,9 @@ impl HeedAuthStore { Action::StatsAll => { actions.insert(Action::StatsGet); } + Action::MetricsAll => { + actions.insert(Action::MetricsGet); + } other => { actions.insert(*other); }