backend for queues & minor front tweaks

This commit is contained in:
2024-04-11 16:39:08 +03:00
parent 8b8124d58d
commit 57965fc147
21 changed files with 210 additions and 35 deletions

View File

@ -1,5 +1,6 @@
from typing import Union
from pydantic import BaseModel
from uuid import UUID
class User(BaseModel):
@ -8,7 +9,7 @@ class User(BaseModel):
class UserInDB(User):
hashed_password: str
id: UUID
class Config:
from_attributes = True