Revise user controller to answer real data
[portal/ric-dashboard.git] / webapp-frontend / src / app / services / dashboard / dashboard.service.ts
index 3f42059..a9f2df6 100644 (file)
@@ -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<DashboardUser[]> {
-    return this.httpClient.get<DashboardUser[]>(this.basePath + 'user');
+  getUsers(): Observable<EcompUser[]> {
+    return this.httpClient.get<EcompUser[]>(this.basePath + 'user');
   }
 
 }