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; |
dce0bf3feat: browse a repository's files and history8d | 11 | pub mod object; |
1e1ae56feat: identity domain model1mo | 12 | pub mod org; |
| 13 | pub mod password; |
dce0bf3feat: browse a repository's files and history8d | 14 | pub mod reference; |
ef1e482feat: repository domain model24d | 15 | pub mod repo; |
fc5b566feat: repository ports and in-memory implementations1mo | 16 | pub mod repository; |
54a0eaffeat: session storage and actor resolution1mo | 17 | pub mod session; |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 18 | pub mod setup_token; |
8608574feat: personal access tokens, as a domain type8d | 19 | pub mod token; |
1e1ae56feat: identity domain model1mo | 20 | pub mod user; |
| 21 | |
| 22 | pub use actor::Actor; |
| 23 | pub use email::Email; |
| 24 | pub use error::DomainError; |
8608574feat: personal access tokens, as a domain type8d | 25 | pub use id::{MembershipId, OrgId, RepoId, TokenId, UserId}; |
1e1ae56feat: identity domain model1mo | 26 | pub use membership::{Membership, Role}; |
3bbcd9ffeat: a branch and a tag are rows, not just names19h | 27 | pub use object::{ |
1b7587dfeat: finding a string in a repository, and landing on the line19h | 28 | BranchRow, CommitSummary, EntryKind, GitRef, GrepHit, ObjectId, RefKind, TagRow, TagSummary, |
| 29 | TreeEntry, |
3bbcd9ffeat: a branch and a tag are rows, not just names19h | 30 | }; |
1e1ae56feat: identity domain model1mo | 31 | pub use org::{OrgName, Organization}; |
| 32 | pub use password::PasswordHash; |
dce0bf3feat: browse a repository's files and history8d | 33 | pub use reference::{RefName, RepoPath}; |
ef1e482feat: repository domain model24d | 34 | pub use repo::{RepoName, Repository, Visibility}; |
54a0eaffeat: session storage and actor resolution1mo | 35 | pub use session::{Session, SessionTokenHash}; |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 36 | pub use setup_token::SetupToken; |
8608574feat: personal access tokens, as a domain type8d | 37 | pub use token::{PersonalAccessToken, TokenHash, TokenSecret}; |
1e1ae56feat: identity domain model1mo | 38 | pub use user::User; |