0e162fdfeat: bootstrap_owner and login use cases1mo | 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
11e7a39feat: create_repo use case24d | 6 | pub(crate) mod authz; |
dce0bf3feat: browse a repository's files and history8d | 7 | pub mod browse; |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 8 | pub mod claim; |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 9 | pub mod config; |
0e162fdfeat: bootstrap_owner and login use cases1mo | 10 | pub mod error; |
8ac00bdfeat: decide who may reach the git protocol8d | 11 | pub mod git; |
40ab5c7feat: /api/me and a shared identity read model1mo | 12 | pub mod identity; |
0e162fdfeat: bootstrap_owner and login use cases1mo | 13 | pub mod login; |
26d9828feat: password hashing behind a port1mo | 14 | pub mod port; |
a69e380feat: public profile page at /{handle}1mo | 15 | pub mod profile; |
11e7a39feat: create_repo use case24d | 16 | pub mod repo; |
54a0eaffeat: session storage and actor resolution1mo | 17 | pub mod session; |
c25b985feat: issue, list, revoke and authenticate tokens8d | 18 | pub mod token; |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 19 | |
dce0bf3feat: browse a repository's files and history8d | 20 | pub use browse::{Browsed, FileView, LOG_LIMIT, MAX_BLOB_BYTES, browse_repo, repo_log}; |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 21 | pub use claim::{OwnerSpec, claim_instance, is_claimed}; |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 22 | pub use config::AppConfig; |
0e162fdfeat: bootstrap_owner and login use cases1mo | 23 | pub use error::{Error, Result}; |
8ac00bdfeat: decide who may reach the git protocol8d | 24 | pub use git::{GitClientHeaders, GitEndpoint, GitOperation, GitService, serve_git}; |
40ab5c7feat: /api/me and a shared identity read model1mo | 25 | pub use identity::{Identity, describe_identity}; |
0e162fdfeat: bootstrap_owner and login use cases1mo | 26 | pub use login::login; |
c50d9adfeat: profile settings with flash feedback25d | 27 | pub use profile::{PublicProfile, update_profile, view_profile}; |
0c5ca49feat: list repositories on the profile8d | 28 | pub use repo::{NewRepo, RepoSummary, RepoView, create_repo, list_repos, view_repo}; |
54a0eaffeat: session storage and actor resolution1mo | 29 | pub use session::{SESSION_LIFETIME, end_session, record_session, resolve_actor, sweep_expired}; |
c25b985feat: issue, list, revoke and authenticate tokens8d | 30 | pub use token::{ |
| 31 | IssuedToken, TokenSummary, authenticate_token, issue_token, list_tokens, revoke_token, |
| 32 | }; |