feat(invites): add group/channel invite links and join by token

This commit is contained in:
2026-03-08 09:58:55 +03:00
parent cc70394960
commit f01bbda14e
11 changed files with 247 additions and 6 deletions

View File

@@ -91,3 +91,9 @@ export interface UserSearchItem {
username: string;
avatar_url: string | null;
}
export interface ChatInviteLink {
chat_id: number;
token: string;
invite_url: string;
}