MFA: pass scopes to MFA challenge

glitchtip
Alex Gleason 2022-01-12 12:40:40 -06:00
rodzic f675e7992a
commit 15d32c3b83
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

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