mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
// @ts-nocheck
|
|
import ApiService from '@/services/ApiService';
|
|
|
|
export const submitResetPassword = (password) => {
|
|
return (dispatch) => {
|
|
return ApiService.post('auth/reset_password', password);
|
|
};
|
|
};
|