2021-06-19 08:20:43 +00:00
|
|
|
import { SecondFactorMethod } from "@models/Methods";
|
2019-11-18 23:37:36 +00:00
|
|
|
|
2019-12-07 14:40:55 +00:00
|
|
|
export interface UserInfo {
|
2020-06-21 13:40:37 +00:00
|
|
|
display_name: string;
|
2019-11-18 23:37:36 +00:00
|
|
|
method: SecondFactorMethod;
|
2022-03-03 11:20:43 +00:00
|
|
|
has_webauthn: boolean;
|
2019-12-07 14:40:55 +00:00
|
|
|
has_totp: boolean;
|
2021-12-01 03:32:58 +00:00
|
|
|
has_duo: boolean;
|
2019-11-18 23:37:36 +00:00
|
|
|
}
|