summaryrefslogtreecommitdiff
path: root/ui/routes/(login)
Commit message (Collapse)AuthorAge
* Get loaded data using `export let data`, instead of fishing around in $page.Owen Jacobson2024-10-17
| | | | | | This is mostly a how-to-Svelte thing. I've also made the API responses for invites a bit more caller-friendly by flattening them and adding the ID field into them. The ID is redundant (the client knows it because the client has the invitation URL), but it makes presenting invitations and actioning them a bit easier.
* Initial invite accept UIOwen Jacobson2024-10-12
|
* Stop creating accounts during login.Owen Jacobson2024-10-11
|
* Provide a separate "initial setup" endpoint that creates a user.Owen Jacobson2024-10-11
|
* Move login to its own route.Owen Jacobson2024-10-11
This - in passing - fixes the problem where the client failed to subscribe after logging in, by causing the whole subscription process to be re-run when returning to the main interface.