8
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-08-03 14:22:15 +02:00

10 lines
349 B
TypeScript

import http from '@/api/http';
export default (email: string, recaptchaData?: string): Promise<string> => {
return new Promise((resolve, reject) => {
http.post('/auth/password', { email, 'g-recaptcha-response': recaptchaData })
.then((response) => resolve(response.data.status || ''))
.catch(reject);
});
};