diff options
Diffstat (limited to 'store/models.js')
-rw-r--r-- | store/models.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/store/models.js b/store/models.js index 47f14b1..4f2297d 100644 --- a/store/models.js +++ b/store/models.js @@ -98,4 +98,29 @@ export const actions = { return res; }, + // Delete a model + async deleteModel({ commit, rootGetters }, id) { + commit("loadingStatus", true, { root: true }); + let res = { status: 0, data: null }; + let api = this.$config.api; + + await fetch(`${api}/v1/models/${id}`, { + method: "DELETE", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${rootGetters["auth/accessToken"]}`, + }, + }) + .then(async (response) => { + res.status = response.status; + res.data = await response.text(); + }) + .catch((e) => { + res.status = e.status; + }); + + commit("loadingStatus", false, { root: true }); + + return res; + }, }; |