forked from Ivasoft/mattermost-mobile
* Show MFA Prompt after Server returned error for login request * eslint * Hide MFA error on first login attempt
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
let mfaPreflightDone = false;
|
|
|
|
export function setMfaPreflightDone(state) {
|
|
mfaPreflightDone = state;
|
|
}
|
|
|
|
export function getMfaPreflightDone() {
|
|
return mfaPreflightDone;
|
|
}
|
|
|