Исправлена ссылка "Форма обратной связи" под формой восстановления пароля

This commit is contained in:
ErickSkrauch 2017-02-24 00:07:05 +03:00
parent dc1ec63381
commit a2123117d4
2 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,8 @@ import authentication from 'services/api/authentication';
import oauth from 'services/api/oauth';
import signup from 'services/api/signup';
import dispatchBsod from 'components/ui/bsod/dispatchBsod';
import { create as createPopup } from 'components/ui/popup/actions';
import ContactForm from 'components/contact/ContactForm';
export { updateUser } from 'components/user/actions';
export { authenticate, logoutAll as logout } from 'components/accounts/actions';
@ -150,6 +152,10 @@ export function resendActivation({email = '', captcha}) {
);
}
export function contactUs() {
return createPopup(ContactForm);
}
export const SET_LOGIN = 'auth:setLogin';
export function setLogin(login) {
return {

View File

@ -29,6 +29,6 @@ export default class RecoverPasswordState extends AbstractState {
}
reject(context) {
context.navigate('/send-message');
context.run('contactUs');
}
}