X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=webapp-frontend%2Fsrc%2Fapp%2Fservices%2Fei%2Fei.service.ts;h=1237b589d9902405ada9814194b9046e2fcf8694;hb=8cf8165763380e8779c9420099faf2197fa161d4;hp=bb429e384aef0c450b78a5c12bfc8c1c656483bb;hpb=02558d31ab250b42d7138e2f762125ee41fad2d6;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/services/ei/ei.service.ts b/webapp-frontend/src/app/services/ei/ei.service.ts index bb429e3..1237b58 100644 --- a/webapp-frontend/src/app/services/ei/ei.service.ts +++ b/webapp-frontend/src/app/services/ei/ei.service.ts @@ -21,7 +21,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; -import { EIJob, EIProducer, ProducerStatus, ProducerRegistrationInfo } from '../../interfaces/ei.types'; +import { EIJob, ProducerStatus, ProducerRegistrationInfo } from '@interfaces/ei.types'; /** * Services for calling the EI endpoints. @@ -67,9 +67,4 @@ export class EIService { const url = this.buildPath(this.eiProducersPath, producerId, this.eiProducerStatusPath); return this.httpClient.get(url); } - - getEIProducers(): Observable { - const url = this.buildPath(this.eiProducersPath); - return this.httpClient.get(url); - } }