-
Couldn't load subscription status.
- Fork 19
Open
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Milestone
Description
The UpdateRoleBody and NewRoleBody have some issues and need some updates, here are the needed updates:
-
The
UpdateRoleBody.namehas amax_lengthof 64 instead of the 32 inNewRoleBody.name.
name: str = Field("", min_length=4, max_length=64) -
The
NewRoleBody.colorandUpdateRoleBody.colorcould use apydantic.Colorfield instead of the currentintfield.
color: Optional[int] = Field(None, le=0xFFFFFF, ge=0) color: Optional[int] = Field(None, le=0xFFFFFF, ge=0)
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers