Support Server requests for MFA, Render failed UI statuses to user, C… (#4483)

* Support Server requests for MFA, Render failed UI statuses to user, Connect to KnownHosts component
This commit is contained in:
Zach H 2021-11-23 02:45:08 -05:00 committed by GitHub
parent 73c5956ece
commit 0683d1aced
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 168 additions and 91 deletions

View file

@ -82,7 +82,7 @@ export class SessionPersistence {
}
static resetPasswordChallenge() {
console.log('Open Modal asking for Email address associated with account');
ServerDispatch.resetPasswordChallenge();
}
static resetPassword() {
@ -90,10 +90,10 @@ export class SessionPersistence {
}
static resetPasswordSuccess() {
console.log('User password successfully changed Alert!');
ServerDispatch.resetPasswordSuccess();
}
static resetPasswordFailed() {
console.log('Open Alert telling user their password request failed for some reason');
ServerDispatch.resetPasswordFailed();
}
}