first commit
This commit is contained in:
15
resources/frontend/core/services/auth.service.js
Normal file
15
resources/frontend/core/services/auth.service.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import axios from 'axios';
|
||||
|
||||
export default class AuthService {
|
||||
resetPasswordRequest(data) {
|
||||
return axios.post('auth/password/reset/request', data);
|
||||
}
|
||||
|
||||
resetPasswordValidateToken(data) {
|
||||
return axios.post('auth/password/reset/validate', data);
|
||||
}
|
||||
|
||||
resetPasswordProcess(data) {
|
||||
return axios.post('auth/password/reset/process', data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user