Feat: Add complete auth system (Login, Register, OTP/2FA via Telegram, Session management)

This commit is contained in:
ren
2026-01-29 14:57:19 +01:00
parent ffec50afad
commit 3550c9e1d5
13 changed files with 644 additions and 160 deletions

View File

@@ -110,3 +110,12 @@ export interface AppSettings {
}
aiProviders: AIServiceConfig[]
}
// Auth Types
export interface User {
id: string
username: string
passwordHash: string
chatId: string
knownIps: string[]
}