| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | Reorganize and consolidate HTTP routes. | Owen Jacobson | 2025-06-18 |
| | | | | | | | | | HTTP routes are now defined in a single, unified module, pulling them out of the topical modules they were formerly part of. This is intended to improve the navigability of the codebase. Previously, finding the handler corresponding to a specific endpoint required prior familiarity, though in practice you could usually guess from topic area. Now, all routes are defined in `crate::routes`. Other than changing visibility, I've avoided making changes to the handlers at the ends of those routes. | ||
| * | Remove a bunch of clippy suppressions. | Owen Jacobson | 2025-05-21 |
| | | | | | Notably, one of them was hiding a real (if unreachable) bug, by converting a "the token you have presented is not valid" scenario into an internal server error. | ||
| * | Rename `login` to `user` throughout the server | Owen Jacobson | 2025-03-23 |
| | | |||
| * | Change the prefix for newly-generated user IDs to `U`, for `User`. | Owen Jacobson | 2025-03-23 |
| | | |||
| * | Rename the `login` module to `user`. | Owen Jacobson | 2025-03-23 |
