fix: change GET by POST, to solve "Request Header Fields Too Large"

This commit is contained in:
Vicent Llopis 2022-09-13 10:27:08 +02:00
parent e6410f6b13
commit 8c6c7345cd
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ module.exports = Self => {
},
http: {
path: `/:id/importBuysPreview`,
verb: 'GET'
verb: 'POST'
}
});

View File

@ -58,7 +58,7 @@ class Controller extends Section {
fetchBuys(buys) {
const params = {buys};
const query = `Entries/${this.$params.id}/importBuysPreview`;
this.$http.get(query, {params}).then(res => {
this.$http.post(query, params).then(res => {
this.import.buys = res.data;
});
}