mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-30 02:32:58 +05:30
Исправлена ссылка "Форма обратной связи" под формой восстановления пароля
This commit is contained in:
parent
dc1ec63381
commit
a2123117d4
@ -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 {
|
||||
|
@ -29,6 +29,6 @@ export default class RecoverPasswordState extends AbstractState {
|
||||
}
|
||||
|
||||
reject(context) {
|
||||
context.navigate('/send-message');
|
||||
context.run('contactUs');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user