mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-02-24 18:07:06 +00:00
13 lines
507 B
JavaScript
13 lines
507 B
JavaScript
export default function getTwoFaMethods() {
|
|
return [
|
|
// {
|
|
// key: 'authenticator_app',
|
|
// name: 'Authenticator App',
|
|
// description: 'Get codes from an app like Authy, 1Password, Microsoft Authenticator, or Google Authenticator',
|
|
// recommended: true,
|
|
// },
|
|
{ key: 'sms', name: 'SMS', description: 'Receive a unique code via SMS' },
|
|
{ key: 'email', name: 'Email', description: 'Receive a unique code via Email' },
|
|
];
|
|
}
|