BUILD129 — три настраиваемых цвета команд

This commit is contained in:
2026-09-10 11:05:16 +03:00
parent f4f80d7837
commit a9278b5251
8 changed files with 243 additions and 62 deletions

View File

@@ -166,6 +166,11 @@ class TeamDirectoryPayload(BaseModel):
city_ru: str = Field(default="", max_length=255)
city_en: str = Field(default="", max_length=255)
color_hex: str = Field(default="", max_length=9)
color_enabled: bool = False
color_2_hex: str = Field(default="", max_length=9)
color_2_enabled: bool = False
color_3_hex: str = Field(default="", max_length=9)
color_3_enabled: bool = False
logo_url: str = Field(default="", max_length=2000)
active: bool = True