Password reset update

This commit is contained in:
MakerLab-Dev
2020-12-03 19:04:50 +01:00
parent 69dcf1299b
commit 69c6c883c2
4 changed files with 14 additions and 68 deletions

View File

@ -48,16 +48,3 @@ export const logout = ({ state, commit }) => {
})
})
}
export const checkMail = ({ commit }, data) => {
return new Promise((resolve, reject) => {
window.axios
.post('/api/v1/is-registered', data)
.then((response) => {
resolve(response)
})
.catch((err) => {
reject(err)
})
})
}