remove api prefix from routes (#280)
* remove api prefix from routes * PR changes --------- Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
@@ -42,7 +42,7 @@ export default {
|
||||
|
||||
methods: {
|
||||
async send () {
|
||||
const { data } = await this.form.post('/api/password/email')
|
||||
const { data } = await this.form.post('/password/email')
|
||||
|
||||
this.status = data.status
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ export default {
|
||||
|
||||
methods: {
|
||||
async reset () {
|
||||
const { data } = await this.form.post('/api/password/reset')
|
||||
const { data } = await this.form.post('/password/reset')
|
||||
|
||||
this.status = data.status
|
||||
|
||||
|
||||
Reference in New Issue
Block a user