Skip to content

Commit

Permalink
Add is_active field to user update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dmezzogori committed Nov 14, 2023
1 parent 02680a7 commit cca3729
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kwik/schemas/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class UserUpdateSchema(BaseModel):
name: str | None = None
surname: str | None = None
email: EmailStr | None = None
is_active: bool | None = None


class UserChangePasswordSchema(BaseModel):
Expand Down

0 comments on commit cca3729

Please sign in to comment.