We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The UpdateRoleBody and NewRoleBody have some issues and need some updates, here are the needed updates:
UpdateRoleBody
NewRoleBody
The UpdateRoleBody.name has a max_length of 64 instead of the 32 in NewRoleBody.name.
UpdateRoleBody.name
max_length
NewRoleBody.name
API/api/versions/v1/routers/roles/models.py
Line 24 in 261ecd3
The NewRoleBody.color and UpdateRoleBody.color could use a pydantic.Color field instead of the current int field.
NewRoleBody.color
UpdateRoleBody.color
pydantic.Color
int
Line 19 in 261ecd3
Line 25 in 261ecd3
The text was updated successfully, but these errors were encountered:
Resolved Issue Tech-With-Tim#61
8729a14
Successfully merging a pull request may close this issue.
The
UpdateRoleBody
andNewRoleBody
have some issues and need some updates, here are the needed updates:The
UpdateRoleBody.name
has amax_length
of 64 instead of the 32 inNewRoleBody.name
.API/api/versions/v1/routers/roles/models.py
Line 24 in 261ecd3
The
NewRoleBody.color
andUpdateRoleBody.color
could use apydantic.Color
field instead of the currentint
field.API/api/versions/v1/routers/roles/models.py
Line 19 in 261ecd3
API/api/versions/v1/routers/roles/models.py
Line 25 in 261ecd3
The text was updated successfully, but these errors were encountered: