We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c6cfbb commit 4c05f36Copy full SHA for 4c05f36
backend/app/models.py
@@ -118,24 +118,4 @@ class TokenPayload(SQLModel):
118
119
class NewPassword(SQLModel):
120
token: str
121
- new_password: str = Field(min_length=8, max_length=40)
122
-
123
-#TODO: Delete Item later. Keep for now so frontend build passes.
124
125
-class ItemBase(SQLModel):
126
- pass
127
128
-class ItemCreate(ItemBase):
129
130
131
-class ItemUpdate(ItemBase):
132
133
134
-class Item(ItemBase, table=True):
135
136
137
-class ItemPublic(ItemBase):
138
139
140
-class ItemsPublic(SQLModel):
141
+ new_password: str = Field(min_length=8, max_length=40)
0 commit comments