Loading js-apps/frontend/src/js/containers/sandbox/api-table.js +3 −0 Original line number Diff line number Diff line Loading @@ -146,6 +146,9 @@ class ApiTable extends Component { case 'meep-vis': prefixStd = '030'; break; case 'meep-federation': prefixStd = '040'; break; default: prefixStd = 'N/A'; } Loading js-apps/frontend/src/js/util/scenario-utils.js +34 −0 Original line number Diff line number Diff line Loading @@ -656,6 +656,40 @@ export function parseEdgeApps(scenario) { enableInProgressCount: -1, disableInProgressCount: -1 }); // MEC016 } else if (proc.image.includes('meep-dai')) { edgeApps.push({ id: proc.id, name: proc.name, instance: '', img: proc.image, mepName: pl.name, env: proc.environment, url: 'api/?urls.primaryName='+pl.name+'%20-%20Device%20Application%20Interface%20REST%20API', path: pl.name+'/dev_app/v1', pseudoName: 'Device Application Interface (016) on ' + pl.name, dropDownName: 'Device Application Interface (016)', enabled: true, enableInProgressCount: -1, disableInProgressCount: -1 }); // MEC040 } else if (proc.image.includes('meep-federation')) { edgeApps.push({ id: proc.id, name: proc.name, instance: '', img: proc.image, mepName: pl.name, env: proc.environment, url: 'api/?urls.primaryName='+pl.name+'%20-%20Federation%20Service%20REST%20API', path: pl.name+'/fed_enablement/v1', pseudoName: 'MEC Federation APIs (040) on ' + pl.name, dropDownName: 'MEC Federation APIs (040)', enabled: true, enableInProgressCount: -1, disableInProgressCount: -1 }); } } } Loading Loading
js-apps/frontend/src/js/containers/sandbox/api-table.js +3 −0 Original line number Diff line number Diff line Loading @@ -146,6 +146,9 @@ class ApiTable extends Component { case 'meep-vis': prefixStd = '030'; break; case 'meep-federation': prefixStd = '040'; break; default: prefixStd = 'N/A'; } Loading
js-apps/frontend/src/js/util/scenario-utils.js +34 −0 Original line number Diff line number Diff line Loading @@ -656,6 +656,40 @@ export function parseEdgeApps(scenario) { enableInProgressCount: -1, disableInProgressCount: -1 }); // MEC016 } else if (proc.image.includes('meep-dai')) { edgeApps.push({ id: proc.id, name: proc.name, instance: '', img: proc.image, mepName: pl.name, env: proc.environment, url: 'api/?urls.primaryName='+pl.name+'%20-%20Device%20Application%20Interface%20REST%20API', path: pl.name+'/dev_app/v1', pseudoName: 'Device Application Interface (016) on ' + pl.name, dropDownName: 'Device Application Interface (016)', enabled: true, enableInProgressCount: -1, disableInProgressCount: -1 }); // MEC040 } else if (proc.image.includes('meep-federation')) { edgeApps.push({ id: proc.id, name: proc.name, instance: '', img: proc.image, mepName: pl.name, env: proc.environment, url: 'api/?urls.primaryName='+pl.name+'%20-%20Federation%20Service%20REST%20API', path: pl.name+'/fed_enablement/v1', pseudoName: 'MEC Federation APIs (040) on ' + pl.name, dropDownName: 'MEC Federation APIs (040)', enabled: true, enableInProgressCount: -1, disableInProgressCount: -1 }); } } } Loading