From b564b1cc38d29a05273f69f414f52f730645c85d Mon Sep 17 00:00:00 2001 From: anant Date: Fri, 9 May 2025 11:07:01 +0530 Subject: [PATCH] Add LLM related actions to roles --- src/rbac/role.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/rbac/role.rs b/src/rbac/role.rs index f1ce887d7..f0546aaaa 100644 --- a/src/rbac/role.rs +++ b/src/rbac/role.rs @@ -244,6 +244,8 @@ pub mod model { Action::QueryLLM, Action::GetLLM, Action::ListLLM, + Action::AddLLM, + Action::DeleteLLM, Action::CreateFilter, Action::ListFilter, Action::GetFilter, @@ -288,6 +290,8 @@ pub mod model { Action::QueryLLM, Action::GetLLM, Action::ListLLM, + Action::AddLLM, + Action::DeleteLLM, Action::GetStreamInfo, Action::GetFilter, Action::ListFilter, @@ -312,6 +316,8 @@ pub mod model { Action::QueryLLM, Action::GetLLM, Action::ListLLM, + Action::AddLLM, + Action::DeleteLLM, Action::ListFilter, Action::GetFilter, Action::CreateFilter,