From 1654dd1116d6341923510e02abedf3dd8a687679 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 17 Oct 2022 22:52:28 +0200 Subject: admin: edit warnings --- store/warnings.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'store/warnings.js') diff --git a/store/warnings.js b/store/warnings.js index d2983bd..30336d9 100644 --- a/store/warnings.js +++ b/store/warnings.js @@ -45,6 +45,30 @@ export const actions = { commit("loadingStatus", false, { root: true }); }, + // Find a warning by its id + async findWarning({ commit, rootGetters }, id) { + commit("loadingStatus", true, { root: true }); + let res = { status: 0, data: null }; + let api = this.$config.api; + + await fetch(`${api}/v1/warnings/${id}`, { + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${rootGetters["auth/accessToken"]}`, + }, + }) + .then(async (response) => { + res.data = await response.json(); + res.status = response.status; + }) + .catch((e) => { + res.status = e.status; + }); + + commit("loadingStatus", false, { root: true }); + + return res; + }, // Filter warnings async filterWarnings({ commit, rootGetters }, payload) { commit("loadingStatus", true, { root: true }); -- cgit v1.2.3-18-g5258