Merge branch 'login-skip-app-token' into 'develop'
Auth: logIn, don't create an unnecessary app token See merge request soapbox-pub/soapbox-fe!901
This commit is contained in:
commit
f03d8861b6
|
@ -186,7 +186,7 @@ export function loadCredentials(token, accountUrl) {
|
|||
|
||||
export function logIn(intl, username, password) {
|
||||
return (dispatch, getState) => {
|
||||
return dispatch(createAppAndToken()).then(() => {
|
||||
return dispatch(createAuthApp()).then(() => {
|
||||
return dispatch(createUserToken(username, password));
|
||||
}).catch(error => {
|
||||
if (error.response.data.error === 'mfa_required') {
|
||||
|
|
Loading…
Reference in New Issue