Creating common token store and moving email invites and verification to it (#6213)

Этот коммит содержится в:
Christopher Speller
2017-04-27 10:55:03 -04:00
коммит произвёл Joram Wilander
родитель 0e007e344b
Коммит 9a87bb3af6
30 изменённых файлов: 461 добавлений и 461 удалений

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

@@ -21,8 +21,7 @@ export default class DoVerifyEmail extends React.Component {
}
componentWillMount() {
verifyEmail(
this.props.location.query.uid,
this.props.location.query.hid,
this.props.location.query.token,
() => {
browserHistory.push('/login?extra=verified&email=' + encodeURIComponent(this.props.location.query.email));
},

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

@@ -43,7 +43,7 @@ class PasswordResetForm extends React.Component {
});
resetPassword(
this.props.location.query.code,
this.props.location.query.token,
password,
() => {
this.setState({error: null});