Removes not used function

This commit is contained in:
Rodrigo Guimarães 2020-11-08 22:33:58 -03:00
parent de7537d63f
commit 4771269f89
1 changed files with 0 additions and 14 deletions

View File

@ -58,20 +58,6 @@ export const fetchProcess = ({ commit }, id) => {
});
};
export const fetchProcessLog = ({ commit }, { id: id, isFull: isFull }) => {
return new Promise((resolve, reject) => {
axios.tainacan.get(`/bg-processes/${id}/log`)
.then( res => {
let log = res.data;
commit('setProcessLog', log);
resolve(log)
})
.catch( error => {
reject(error);
})
});
};
export const fetchProcessErrorLog = ({ commit }, { id: id, isFull: isFull }) => {
return new Promise((resolve, reject) => {
axios.tainacan.get(`/bg-processes/${id}/log`)