mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-27 15:30:37 +05:30
Отключена передача токена авторизации при выполнении запросов в сторону формы восстановления пароля
This commit is contained in:
parent
a2123117d4
commit
f42dd46c89
@ -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}
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user