Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions music_assistant_models/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class User(DataClassORJSONMixin):
preferences: dict[str, Any] = field(default_factory=dict)
provider_filter: list[str] = field(default_factory=list)
player_filter: list[str] = field(default_factory=list)
permissions: list[str] = field(default_factory=list)
claims: dict[str, Any] = field(default_factory=dict)
Comment on lines +42 to +43
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would this be something you register per user or per role or even per token ?



@dataclass
Expand Down