mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Ensure we get a fresh response
This commit is contained in:
@@ -504,7 +504,12 @@ export default {
|
||||
async getConfiguration () {
|
||||
this.configuration = null;
|
||||
const url = `/project/${this.$route.params.project}/configuration`;
|
||||
this.configuration = await this.api([url]);
|
||||
const init = {
|
||||
headers: {
|
||||
"If-None-Match": "" // Ensure we get a fresh response
|
||||
}
|
||||
};
|
||||
this.configuration = await this.api([url, init]);
|
||||
},
|
||||
|
||||
makeTree (obj, id=0) {
|
||||
|
||||
Reference in New Issue
Block a user