mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 03:53:37 +00:00
Found and fixed #1571
This commit is contained in:
@@ -288,7 +288,7 @@
|
||||
*/
|
||||
store() {
|
||||
this.persistClient(
|
||||
'post', './oauth/clients',
|
||||
'post', './oauth/clients' + '?_token=' + window.Laravel,
|
||||
this.createForm, '#modal-create-client'
|
||||
);
|
||||
},
|
||||
@@ -309,7 +309,7 @@
|
||||
*/
|
||||
update() {
|
||||
this.persistClient(
|
||||
'put', './oauth/clients/' + this.editForm.id,
|
||||
'put', './oauth/clients/' + this.editForm.id + '?_token=' + window.Laravel,
|
||||
this.editForm, '#modal-edit-client'
|
||||
);
|
||||
},
|
||||
|
Reference in New Issue
Block a user