Fixed react refresh bug and fixed white background when clicking on task which was a TASK_AUDIT hangover from react local storagedb now pointing too python fastapi

This commit is contained in:
NPS Agent
2026-05-11 14:04:13 +09:30
parent 3825c7556b
commit 49dc767922
10 changed files with 156 additions and 656 deletions
+4
View File
@@ -16,6 +16,10 @@ class UserBase(BaseModel):
class UserCreate(UserBase):
password: str
class UserLogin(BaseModel):
id: str
password: str
class User(UserBase):
created_at: datetime
class Config: