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; }