Add dispatch in ftbot (merge error)

This commit is contained in:
Matthias 2020-05-11 07:05:35 +02:00
parent dd5ccbc91a
commit aed8dd7bca

View File

@ -71,7 +71,7 @@ export default {
.then((result) => commit('updateProfit', result.data)) .then((result) => commit('updateProfit', result.data))
.catch(console.error); .catch(console.error);
}, },
getState({ commit, getters }) { getState({ commit, getters, dispatch }) {
return axios.get(`${apiBase}/show_config`, { return axios.get(`${apiBase}/show_config`, {
...getters.apiAuth ...getters.apiAuth
}) })
@ -85,6 +85,7 @@ export default {
} }
console.log("Dispatching refresh_token...") console.log("Dispatching refresh_token...")
dispatch('user/refresh_token', null, { root: true }) dispatch('user/refresh_token', null, { root: true })
return null;
}); });
}, },
// Post methods // Post methods