mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Remove trailing slash from URL
This commit is contained in:
@@ -503,7 +503,7 @@ export default {
|
||||
|
||||
async getConfiguration () {
|
||||
this.configuration = null;
|
||||
const url = `/project/${this.$route.params.project}/configuration/`;
|
||||
const url = `/project/${this.$route.params.project}/configuration`;
|
||||
this.configuration = await this.api([url]);
|
||||
},
|
||||
|
||||
@@ -540,7 +540,7 @@ export default {
|
||||
},
|
||||
|
||||
async patch (data) {
|
||||
const url = `/project/${this.$route.params.project}/configuration/`;
|
||||
const url = `/project/${this.$route.params.project}/configuration`;
|
||||
const init = {
|
||||
method: "PATCH",
|
||||
body: data
|
||||
|
||||
Reference in New Issue
Block a user