MFA: pass scopes to MFA challenge

This commit is contained in:
Alex Gleason
2022-01-12 12:40:40 -06:00
parent f675e7992a
commit 15d32c3b83

View File

@ -143,6 +143,7 @@ export function otpVerify(code, mfa_token) {
code: code,
challenge_type: 'totp',
redirect_uri: 'urn:ietf:wg:oauth:2.0:oob',
scope: getScopes(getState()),
}).then(({ data: token }) => dispatch(authLoggedIn(token)));
};
}