Vue components will now work in subdirs too.

This commit is contained in:
James Cole
2018-04-02 14:42:30 +02:00
parent 7d02d0f762
commit d956c795a4
3 changed files with 10 additions and 10 deletions

View File

@@ -207,7 +207,7 @@
* Get all of the personal access tokens for the user.
*/
getTokens() {
axios.get('/oauth/personal-access-tokens')
axios.get('./oauth/personal-access-tokens')
.then(response => {
this.tokens = response.data;
});
@@ -217,7 +217,7 @@
* Get all of the available scopes.
*/
getScopes() {
axios.get('/oauth/scopes')
axios.get('./oauth/scopes')
.then(response => {
this.scopes = response.data;
});
@@ -238,7 +238,7 @@
this.form.errors = [];
axios.post('/oauth/personal-access-tokens', this.form)
axios.post('./oauth/personal-access-tokens', this.form)
.then(response => {
this.form.name = '';
this.form.scopes = [];
@@ -290,7 +290,7 @@
* Revoke the given token.
*/
revoke(token) {
axios.delete('/oauth/personal-access-tokens/' + token.id)
axios.delete('./oauth/personal-access-tokens/' + token.id)
.then(response => {
this.getTokens();
});