sea_orm/rbac/mod.rs
1#![allow(missing_docs)]
2
3mod engine;
4pub use engine::*;
5
6pub mod entity;
7pub use entity::user::UserId as RbacUserId;
8
9pub mod context;
10pub use context::*;
11
12mod error;
13pub use error::Error as RbacError;
14use error::*;
15
16pub mod schema;
17
18/// This could be used to denote any permission or any resources.
19pub const WILDCARD: &str = "*";
20
21pub use sea_query::audit::{AccessType, SchemaOper};