fix merge conflict

fix merge conflict 5

fix tag label

fix CR notes

fix filtes conbined
This commit is contained in:
Rodrigo Quelca
2021-07-14 14:21:28 +00:00
parent d4adc42138
commit 6829c1ab3a
14 changed files with 437 additions and 37 deletions

View File

@@ -69,6 +69,7 @@ const services = {
PROCESSES: "/home/processes",
USERS: "/home/users",
TASKS: "/home/tasks",
CATEGORIES: "/home/categories",
DEBUG_STATUS: "/home/process-debug-status?processUid={prj_uid}"
};

View File

@@ -82,6 +82,18 @@ export let filters = {
keys: {},
});
},
/**
* Service to get the categories list
*/
categories(query) {
return Api.get({
service: "CATEGORIES",
params: {
name: query,
},
keys: {},
});
},
/**
* Service to get the users list
*/