steid

@jamesgill /

644 BCode·Blame·Raw
1e1ae56feat: identity domain model1mo
1//! The domain layer: entities, value objects, and the errors they raise.
2//!
3//! Knows nothing about HTTP, SQL, git, or Topcoat. Nothing in here may import from
4//! `application` or `infrastructure`.
5
6pub mod actor;
7pub mod email;
8pub mod error;
9pub mod id;
10pub mod membership;
11pub mod org;
12pub mod password;
fc5b566feat: repository ports and in-memory implementations1mo
13pub mod repository;
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
14pub mod setup_token;
1e1ae56feat: identity domain model1mo
15pub mod user;
16
17pub use actor::Actor;
18pub use email::Email;
19pub use error::DomainError;
20pub use id::{MembershipId, OrgId, UserId};
21pub use membership::{Membership, Role};
22pub use org::{OrgName, Organization};
23pub use password::PasswordHash;
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
24pub use setup_token::SetupToken;
1e1ae56feat: identity domain model1mo
25pub use user::User;