Skip to content

Commit

Permalink
fix: store api key pydantic error (#4103)
Browse files Browse the repository at this point in the history
Fixed User pydantic error

Co-authored-by: Jordan Frazier <[email protected]>
  • Loading branch information
lucaseduoli and jordanrfrazier authored Oct 10, 2024
1 parent b5e504b commit 5540da0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 5540da0

Please sign in to comment.