Отключена передача токена авторизации при выполнении запросов в сторону формы восстановления пароля

This commit is contained in:
ErickSkrauch 2017-02-24 00:21:24 +03:00
parent a2123117d4
commit f42dd46c89

View File

@ -32,7 +32,8 @@ const authentication = {
}) { }) {
return request.post( return request.post(
'/api/authentication/forgot-password', '/api/authentication/forgot-password',
{login} {login},
{token: null}
); );
}, },
@ -43,7 +44,8 @@ const authentication = {
}) { }) {
return request.post( return request.post(
'/api/authentication/recover-password', '/api/authentication/recover-password',
{key, newPassword, newRePassword} {key, newPassword, newRePassword},
{token: null}
); );
}, },