summaryrefslogtreecommitdiff
path: root/ui/routes/(login)/invite
Commit message (Collapse)AuthorAge
* Add missing awaits on goto() callsOwen Jacobson2025-02-21
|
* Stylize more betterKit La Touche2025-01-05
|
* Don't erroneously try to get an invite ID as a property of a promise ↵Owen Jacobson2024-11-11
| | | | yielding an invite.
* Run spaces-style prettier formattingKit La Touche2024-11-03
|
* Svelte 5: go through and use runes in components, pages, and layouts.Owen Jacobson2024-11-03
| | | | Does not use runes in stores (yet).
* Address outstanding lint issues.Owen Jacobson2024-11-02
|
* Run prettier, make lint part of pre-commitOwen Jacobson2024-11-02
|
* Don't leave field binding vars uninitialized.Owen Jacobson2024-10-30
| | | | | | This was causing problems for changing passwords: if the user didn't type anything in the "original password" field, the code path to sending that field to the server was just straight-up omitting the field from the message, rather than setting it to empty string, causing a 422 Unprocessable Entity. On investigation we had latent bugs related to this in a bunch of spots.
* Take a swing at putting an invite UI in place.Owen Jacobson2024-10-25
|
* 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