Fix namespace issue and small name refactoring #17

Merged
robin merged 2 commits from dev into main 2026-08-21 14:52:07 +02:00
Showing only changes of commit 024f67bb20 - Show all commits
+1 -1
View File
@@ -35,7 +35,7 @@ type ListItem struct {
type ListRepository interface {
CreateList(ctx context.Context, name string, userIDs []string) (*List, error)
GetListsByUserID(ctx context.Context, userID string) ([]domain.List, error)
GetListsByUserID(ctx context.Context, userID string) ([]List, error)
AddUserToList(ctx context.Context, listID string, userID string) error
RemoveUserFromList(ctx context.Context, listID string, userID string) error
IsUserInList(ctx context.Context, listID string, userID string) (bool, error)