kanidmd_lib/idm/
mod.rs

1//! The Identity Management components that are layered on top of the [QueryServer](crate::server::QueryServer). These allow
2//! rich and expressive events and transformations that are lowered into the correct/relevant
3//! actions in the [QueryServer](crate::server::QueryServer). Generally this is where "Identity Management" policy and code
4//! is implemented.
5
6pub mod account;
7pub(crate) mod accountpolicy;
8pub mod application;
9pub(crate) mod applinks;
10pub mod audit;
11pub mod authentication;
12pub(crate) mod authsession;
13pub mod credupdatesession;
14pub mod delayed;
15pub mod event;
16pub mod group;
17pub mod identityverification;
18pub mod ldap;
19pub mod oauth2;
20pub(crate) mod oauth2_client;
21pub(crate) mod radius;
22pub(crate) mod reauth;
23pub mod scim;
24pub mod server;
25pub mod serviceaccount;