fix: поддержка режима «both» — показ кнопки контакта вместе с тикетами

This commit is contained in:
Fringg
2026-03-16 04:09:26 +03:00
parent 4f76241892
commit f960d5fc0b
2 changed files with 41 additions and 1 deletions

View File

@@ -474,7 +474,7 @@ export interface TicketDetail extends Omit<Ticket, 'messages_count' | 'last_mess
export interface SupportConfig {
tickets_enabled: boolean;
support_type: 'tickets' | 'profile' | 'url';
support_type: 'tickets' | 'profile' | 'url' | 'both';
support_url?: string | null;
support_username?: string | null;
}