mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 21:34:45 +02:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default (email: string): Promise<string> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.post('/auth/password', { email })
|
|
.then(response => resolve(response.data.status || ''))
|
|
.catch(reject);
|
|
});
|
|
};
|