getAtcsWithServices
getAtcsWithServices: ()
Get all acts of all service
Example
const cities = coreApp.odm.newModel("city", locationPure, {});
const setAddCityAct = coreApp.acts.setAct({
schema: "city",
actName: "addCity",
validator: addCityValidator(),
fn: addCity,
});
const getAtcsWithServices = coreApp.acts.getAtcsWithServices();
Return Of Example
{
"main": {
"country": {
"addCountry": {
"validator": {
"type": "object",
"schema": {
"set": {
"type": "object",
"schema": {
"name": {
"type": "string",
"schema": null
},
"population": {
"type": "number",
"schema": null
},
"abb": {
"type": "string",
"schema": null
}
}
},
"get": {
"type": "object",
"schema": {
"_id": {
"type": "enums",
"schema": {
"0": 0,
"1": 1
.
.
.