diff --git a/app/models/user.py b/app/models/user.py index 2a8e4c1..69c0f1c 100644 --- a/app/models/user.py +++ b/app/models/user.py @@ -1,8 +1,10 @@ from pydantic import BaseModel, Field +from typing import Optional class User(BaseModel): uid: str = Field(..., alias="_id") username: str password: str - is_admin: bool = False \ No newline at end of file + is_admin: bool = False + push_subscriptions: Optional[list[str]] = [] \ No newline at end of file