From aad3a4239e3c78a0f66643e5193bcb188a2f102d Mon Sep 17 00:00:00 2001 From: Satyam Singh Date: Thu, 3 Aug 2023 20:23:52 +0530 Subject: [PATCH] Add list stream permission to all roles --- server/src/rbac/role.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/rbac/role.rs b/server/src/rbac/role.rs index ab793de80..8a5e79911 100644 --- a/server/src/rbac/role.rs +++ b/server/src/rbac/role.rs @@ -164,6 +164,7 @@ pub mod model { actions: vec![ Action::Ingest, Action::Query, + Action::ListStream, Action::GetSchema, Action::GetStats, Action::GetRetention, @@ -179,6 +180,7 @@ pub mod model { RoleBuilder { actions: vec![ Action::Query, + Action::ListStream, Action::GetSchema, Action::GetStats, Action::GetRetention,