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::*;