Fixing email verification flow (#2806)

Этот коммит содержится в:
Christopher Speller
2016-04-27 16:03:31 -04:00
коммит произвёл Harrison Healey
родитель fa807d8e43
Коммит ada513a014
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@@ -21,14 +21,13 @@ export default class DoVerifyEmail extends React.Component {
componentWillMount() {
const uid = this.props.location.query.uid;
const hid = this.props.location.query.hid;
const teamName = this.props.location.query.teamname;
const email = this.props.location.query.email;
Client.verifyEmail(
uid,
hid,
() => {
browserHistory.push('/' + teamName + '/login?extra=verified&email=' + email);
browserHistory.push('/login?extra=verified&email=' + email);
},
(err) => {
this.setState({verifyStatus: 'failure', serverError: err.message});