Commit bee3fbe8 authored by Yann Garcia's avatar Yann Garcia
Browse files

Resolve issues after merging STF678_Task3 into STF678_Task4

parent 77385a6d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -146,6 +146,9 @@ class ApiTable extends Component {
    case 'meep-vis':
      prefixStd = '030';
      break;
    case 'meep-federation':
      prefixStd = '040';
      break;
    default:
      prefixStd = 'N/A';
    }
+34 −0
Original line number Diff line number Diff line
@@ -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
                });
              }
            }
          }