Skip to content

Commit 403fabe

Browse files
authored
Fix content limit schema (#407)
1 parent 04c5b72 commit 403fabe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core_backend/app/users/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class UserCreate(BaseModel):
1111
"""
1212

1313
username: str
14-
content_quota: int
14+
content_quota: Optional[int] = None
1515
api_daily_quota: Optional[int] = None
1616

1717
model_config = ConfigDict(from_attributes=True)

0 commit comments

Comments
 (0)