| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | Convert `Invites` into a freestanding component. | Owen Jacobson | 2025-10-28 |
| | | |||
| * | Stop returning an HTTP body from `POST /api/invite/:id`. | Owen Jacobson | 2025-08-24 |
| | | | | | As with the previous commits, the body was never actually being used. | ||
| * | Hoist `password` out to the top level. | Owen Jacobson | 2025-08-24 |
| | | | | | Having this buried under `crate::user` makes it hard to split up the roles `user` fulfils right now. Moving it out to its own module makes it a bit tidier to reuse it in a separate, authentication-only way. | ||
| * | Handlers are _named operations_, which can be exposed via routes. | Owen Jacobson | 2025-06-18 |
| Each domain module that exposes handlers does so through a `handlers` child module, ideally as a top-level symbol that can be plugged directly into Axum's `MethodRouter`. Modules could make exceptions to this - kill the doctrinaire inside yourself, after all - but none of the API modules that actually exist need such exceptions, and consistency is useful. The related details of request types, URL types, response types, errors, &c &c are then organized into modules under `handlers`, along with their respective tests. | |||
