Initial Switch to V2. Completely Overhauled Backend, Frontend and General Structure.

This commit is contained in:
2026-04-17 14:37:36 +03:00
parent eb773c5531
commit 0a8a42d69b
447 changed files with 70696 additions and 492 deletions

View File

@@ -1,5 +1,5 @@
from pydantic import BaseModel
from typing import Optional
from typing import Any, Dict, Optional
from auth.models import StaffPermissions
@@ -35,3 +35,7 @@ class StaffResponse(BaseModel):
class StaffListResponse(BaseModel):
staff: list[StaffResponse]
total: int
class PreferencesUpdate(BaseModel):
prefs: Dict[str, Any]