This commit is contained in:
Henry Jordan
2021-08-04 16:28:12 +00:00
38 changed files with 1242 additions and 356 deletions

View File

@@ -1,6 +1,6 @@
import ApiInstance from "./Api.js";
import Services from "./Services";
let Api = new ApiInstance( Services );
let Api = new ApiInstance(Services);
export let process = {
list: {
@@ -12,5 +12,13 @@ export let process = {
keys: {}
});
}
},
categories(dt) {
return Api.fetch({
service: "CATEGORIES",
method: "get",
data: dt,
keys: {}
});
}
};