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 3c13e13c2e - Show all commits
+1 -1
View File
@@ -177,7 +177,7 @@ func (r *ListRepo) SetListItemCompleted(ctx context.Context, listItemID string,
func (r *ListRepo) GetListItems(ctx context.Context, listID string) ([]domain.ListItem, error) {
rows, err := r.db.QueryContext(ctx,
"SELECT id, title, is_completed, created_at, modified_at FROM list_items WHERE list_id = $1",
"SELECT id, title, is_completed, created_at, modified_at FROM list_items WHERE list_id = $1 ORDER BY modified_at DESC",
listID,
)
if err != nil {