steid

@jamesgill /

865 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;
ef1e482feat: repository domain model24d
13pub mod repo;
fc5b566feat: repository ports and in-memory implementations1mo
14pub mod repository;
54a0eaffeat: session storage and actor resolution1mo
15pub mod session;
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
16pub mod setup_token;
8608574feat: personal access tokens, as a domain type8d
17pub mod token;
1e1ae56feat: identity domain model1mo
18pub mod user;
19
20pub use actor::Actor;
21pub use email::Email;
22pub use error::DomainError;
8608574feat: personal access tokens, as a domain type8d
23pub use id::{MembershipId, OrgId, RepoId, TokenId, UserId};
1e1ae56feat: identity domain model1mo
24pub use membership::{Membership, Role};
25pub use org::{OrgName, Organization};
26pub use password::PasswordHash;
ef1e482feat: repository domain model24d
27pub use repo::{RepoName, Repository, Visibility};
54a0eaffeat: session storage and actor resolution1mo
28pub use session::{Session, SessionTokenHash};
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
29pub use setup_token::SetupToken;
8608574feat: personal access tokens, as a domain type8d
30pub use token::{PersonalAccessToken, TokenHash, TokenSecret};
1e1ae56feat: identity domain model1mo
31pub use user::User;