Invite system and user registration #32

Merged
robin merged 13 commits from dev into main 2026-08-31 21:38:47 +02:00
Showing only changes of commit 8ab2f3f1bf - Show all commits
+1 -1
View File
@@ -51,7 +51,7 @@ func NewMux(cfg Config) http.Handler {
// Invites
apiMux.Handle("POST /user/invites", protected(inviteHandler.CreateInvite))
apiMux.Handle("DELETE /user/invites/{id}", protected(inviteHandler.DeleteInvite))
apiMux.Handle("GET /user/invites", protected(inviteHandler.CreateInvite))
apiMux.Handle("GET /user/invites", protected(inviteHandler.GetInvites))
// Lists
apiMux.Handle("POST /lists", protected(listHandler.CreateList))