summaryrefslogtreecommitdiff
path: root/web/src/models/UserInfo.ts
blob: 5c7c155ca23ea53c3838968243be4ad6b51269cb (plain)
1
2
3
4
5
6
7
8
9
10
import { SecondFactorMethod } from "@models/Methods";

export interface UserInfo {
    display_name: string;
    emails: string[];
    method: SecondFactorMethod;
    has_webauthn: boolean;
    has_totp: boolean;
    has_duo: boolean;
}