We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 926c833 commit 45b5475Copy full SHA for 45b5475
src/api/index.js
@@ -158,6 +158,7 @@ export const usersApi = {
158
ignore: user => $http(`/api/ignoreUsers/ignore/${user.id}`, { method: 'POST' }),
159
unignore: user => $http(`/api/ignoreUsers/unignore/${user.id}`, { method: 'POST' }),
160
adminRecover: data => $http(`/api/user/recover`, { method: 'POST', data }),
161
+ resetPassword: data => $http(`/api/reset`, { method: 'POST', data }),
162
checkResetToken: (username, token) => $http(`/api/reset/${username}/${token}/validate`),
163
trust: {
164
getTrustList: () => $http('/api/trustlist'),
0 commit comments