After signup, redirect to communities page.
This commit is contained in:
parent
b3fad913a7
commit
ca26756d0a
1 changed files with 8 additions and 1 deletions
|
@ -188,13 +188,20 @@ export class Login extends Component<any, State> {
|
||||||
this.setState(this.state);
|
this.setState(this.state);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
if (op == UserOperation.Register || op == UserOperation.Login) {
|
if (op == UserOperation.Login) {
|
||||||
this.state.loginLoading = false;
|
this.state.loginLoading = false;
|
||||||
this.state.registerLoading = false;
|
this.state.registerLoading = false;
|
||||||
let res: LoginResponse = msg;
|
let res: LoginResponse = msg;
|
||||||
UserService.Instance.login(res);
|
UserService.Instance.login(res);
|
||||||
this.props.history.push('/');
|
this.props.history.push('/');
|
||||||
|
} else if (op == UserOperation.Register) {
|
||||||
|
this.state.loginLoading = false;
|
||||||
|
this.state.registerLoading = false;
|
||||||
|
let res: LoginResponse = msg;
|
||||||
|
UserService.Instance.login(res);
|
||||||
|
this.props.history.push('/communities');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue