From 195375c0834a4271e497f51e0017e6c5d8acc15e Mon Sep 17 00:00:00 2001 From: filipriec Date: Tue, 25 Mar 2025 12:35:10 +0100 Subject: [PATCH] temp disable of the rbac --- server/src/auth/logic.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/auth/logic.rs b/server/src/auth/logic.rs index 9a03f5e..a3bf651 100644 --- a/server/src/auth/logic.rs +++ b/server/src/auth/logic.rs @@ -2,8 +2,8 @@ pub mod jwt; pub mod middleware; -pub mod rbac; +// TODO implement RBAC on all of the endpoints +// pub mod rbac; pub use jwt::*; pub use middleware::*; -pub use rbac::*;