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

export interface Configuration {
    available_methods: Set<SecondFactorMethod>;
    password_change_disabled: boolean;
    password_reset_disabled: boolean;
}

export interface SecuritySettingsConfiguration {
    disable: boolean;
}