7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-14 14:41:07 +02:00
2019-06-24 21:43:46 -07:00

10 lines
288 B
TypeScript

import http from '@/api/http';
export default (email: string, password: string): Promise<void> => {
return new Promise((resolve, reject) => {
http.put('/api/client/account/email', { email, password })
.then(() => resolve())
.catch(reject);
});
};