Commit f27e7dae authored by M. Rehan Abbasi's avatar M. Rehan Abbasi
Browse files

add MEC030 service in edgeApps

parent 1c5d7807
Loading
Loading
Loading
Loading
+18 −1
Original line number Diff line number Diff line
@@ -538,6 +538,24 @@ export function parseEdgeApps(scenario) {
                  enableInProgressCount: -1,
                  disableInProgressCount: -1
                });
              // MEC030
              } else if (proc.image.includes('meep-vis')) {
                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-%20V2X%20Information%20Service%20REST%20API',
                  path: pl.name + '/wai/v2',
                  pseudoName: 'V2X Information (030) on ' + pl.name,
                  dropDownName: 'V2X Information (030)',
                  enabled: false,
                  enableInProgressCount: -1,
                  disableInProgressCount: -1,
                });
              // MEC011
              } else if (proc.image.includes('meep-app-enablement')) {
                // App support
@@ -581,4 +599,3 @@ export function parseEdgeApps(scenario) {
  }
  return edgeApps;
}