Skip to content

Commit

Permalink
fix: store api key pydantic error (langflow-ai#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
2 people authored and smatiolids committed Oct 15, 2024
1 parent 602a2f7 commit 584b87c
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 584b87c

Please sign in to comment.