1e1ae56feat: identity domain model1mo | 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | pub mod actor; |
| 7 | pub mod email; |
| 8 | pub mod error; |
| 9 | pub mod id; |
| 10 | pub mod membership; |
| 11 | pub mod org; |
| 12 | pub mod password; |
fc5b566feat: repository ports and in-memory implementations1mo | 13 | pub mod repository; |
54a0eaffeat: session storage and actor resolution1mo | 14 | pub mod session; |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 15 | pub mod setup_token; |
1e1ae56feat: identity domain model1mo | 16 | pub mod user; |
| 17 | |
| 18 | pub use actor::Actor; |
| 19 | pub use email::Email; |
| 20 | pub use error::DomainError; |
| 21 | pub use id::{MembershipId, OrgId, UserId}; |
| 22 | pub use membership::{Membership, Role}; |
| 23 | pub use org::{OrgName, Organization}; |
| 24 | pub use password::PasswordHash; |
54a0eaffeat: session storage and actor resolution1mo | 25 | pub use session::{Session, SessionTokenHash}; |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 26 | pub use setup_token::SetupToken; |
1e1ae56feat: identity domain model1mo | 27 | pub use user::User; |