X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fservices%2Fdashboard%2Fdashboard.service.ts;fp=webapp-frontend%2Fsrc%2Fapp%2Fservices%2Fdashboard%2Fdashboard.service.ts;h=a9f2df620ff774296a0c2e587e9b7e4bc3ecfb91;hb=50fb3b40ec45a65ba7c687e290a3d7f491484b49;hp=3f420595ac3c5fdd497929d12980dccc006bc0ba;hpb=a1a3e0d2f8732570ad9688a842a86f513b40005b;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/services/dashboard/dashboard.service.ts b/webapp-frontend/src/app/services/dashboard/dashboard.service.ts index 3f420595..a9f2df62 100644 --- a/webapp-frontend/src/app/services/dashboard/dashboard.service.ts +++ b/webapp-frontend/src/app/services/dashboard/dashboard.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -20,7 +20,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; -import { DashboardSuccessTransport, DashboardUser } from '../../interfaces/dashboard.types'; +import { DashboardSuccessTransport, EcompUser } from '../../interfaces/dashboard.types'; @Injectable({ providedIn: 'root' @@ -55,10 +55,10 @@ export class DashboardService { /** * Gets Dashboard users - * @returns Observable that should yield a DashboardUser array + * @returns Observable that should yield a EcompUser array */ - getUsers(): Observable { - return this.httpClient.get(this.basePath + 'user'); + getUsers(): Observable { + return this.httpClient.get(this.basePath + 'user'); } }