fix: store api key pydantic error (#4103)

Fixed User pydantic error

Co-authored-by: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com>
This commit is contained in:
Lucas Oliveira 2024-10-10 17:56:03 -03:00 committed by GitHub
commit 5540da0c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,6 +46,7 @@ class UserRead(SQLModel):
id: UUID = Field(default_factory=uuid4)
username: str = Field()
profile_image: str | None = Field()
store_api_key: str | None = Field(nullable=True)
is_active: bool = Field()
is_superuser: bool = Field()
create_at: datetime = Field()