- Introduced UserDbService and UserDbServiceImpl for user data handling. - Added UserMapper for converting between User and UserRecord. - Implemented user creation and retrieval in the database. - Updated AuthRepository to include user-related methods. - Enhanced OIDC claims processing to include issuer information. - Created user table in the database with necessary fields and indexes.
4 lines
39 B
Rust
4 lines
39 B
Rust
pub mod db;
|
|
pub mod oidc;
|
|
pub mod web;
|