From 2f33e5514469f2686c4b35e2105f4188a41d4145 Mon Sep 17 00:00:00 2001 From: Fringg Date: Mon, 16 Mar 2026 04:09:21 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D1=80=D0=B5=D0=B6=D0=B8=D0=BC=20=C2=AB?= =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D1=82=D0=B0=D0=BA=D1=82=20=D0=B8=20=D1=82?= =?UTF-8?q?=D0=B8=D0=BA=D0=B5=D1=82=D1=8B=C2=BB=20=D0=B2=D0=BE=D0=B7=D0=B2?= =?UTF-8?q?=D1=80=D0=B0=D1=89=D0=B0=D0=B5=D1=82=20support=5Ftype=3D'both'?= =?UTF-8?q?=20=D0=B2=D0=BC=D0=B5=D1=81=D1=82=D0=BE=20'tickets'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/cabinet/routes/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cabinet/routes/info.py b/app/cabinet/routes/info.py index 78b1330c..01cf8143 100644 --- a/app/cabinet/routes/info.py +++ b/app/cabinet/routes/info.py @@ -91,7 +91,7 @@ class SupportConfigResponse(BaseModel): """Support/tickets configuration for miniapp.""" tickets_enabled: bool - support_type: str # "tickets", "profile", "url" + support_type: str # "tickets", "profile", "url", "both" support_url: str | None = None support_username: str | None = None @@ -299,7 +299,7 @@ async def get_support_config(): support_type = 'profile' else: # both tickets_enabled = True - support_type = 'tickets' + support_type = 'both' return SupportConfigResponse( tickets_enabled=tickets_enabled,