Delete lists and add users via email #22

Merged
robin merged 8 commits from dev into main 2026-08-21 21:51:53 +02:00
Showing only changes of commit f1ea27092f - Show all commits
+1 -1
View File
@@ -122,7 +122,7 @@ func (h *ListHandler) GetLists(w http.ResponseWriter, r *http.Request) {
lists, err := h.ListService.GetLists(ctx, authContext.UserID) lists, err := h.ListService.GetLists(ctx, authContext.UserID)
if err != nil { if err != nil {
slog.ErrorContext(ctx, "failed to set list item completed", slog.Any("error", err)) slog.ErrorContext(ctx, "failed to get lists", slog.Any("error", err))
response.Error(ctx, w, http.StatusInternalServerError, "failed to read list items") response.Error(ctx, w, http.StatusInternalServerError, "failed to read list items")
return return
} }