feat: implement checking if email verification is enabled or not, change appearance of auth
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-05-30 00:15:01 +02:00
parent 47d5063bb7
commit f39ff00b3b
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
3 changed files with 40 additions and 3 deletions

View file

@ -53,3 +53,12 @@ export interface UserResponse {
email?: string,
email_verified?: boolean
}
export interface StatsResponse {
accounts: number,
uptime: number,
version: string,
registration_enabled: boolean,
email_verification_required: boolean,
build_number: string
}