systemprompt-users 0.14.4

User management for systemprompt.io AI governance infrastructure. 6-tier RBAC, sessions, IP bans, and role-scoped access control for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! User-record persistence, split by concern.
//!
//! The `UserRepository` methods are implemented across the submodules here:
//! lookups (`find`), pagination and search (`list`), mutations
//! (`operations`), session tracking (`session`), aggregate counts (`stats`),
//! and account consolidation (`merge`). Re-exports the result and parameter
//! types [`MergeResult`] and [`UpdateUserParams`].

mod find;
mod list;
mod merge;
pub(super) mod operations;
mod session;
mod stats;

pub use merge::MergeResult;
pub use operations::UpdateUserParams;