feat: updated

This commit is contained in:
2026-05-10 09:50:39 +03:00
parent 1ae330258b
commit 65c464ab67
19 changed files with 184 additions and 265 deletions

View File

@@ -6,7 +6,6 @@ from pydantic import BaseModel, Field
class CreateCallRequest(BaseModel):
room_title: str = Field(default="", max_length=100)
password: str = Field(default="", max_length=100)
telegram_alert_enabled: bool = False
quick_join: bool = False
@@ -46,8 +45,8 @@ class CallInfoResponse(BaseModel):
class AppConfigResponse(BaseModel):
telegram_alerting_available: bool
max_attachment_size_mb: int
turn_ice_servers: list[dict] = Field(default_factory=list)
class FinishCallRequest(BaseModel):