summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.service.ts
blob: 3cd725847f869957f53f7117013b07355b0b7e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';
import { environment } from '../../../../../../../environments/environment';

@Injectable({
  providedIn: 'root'
})
export class DashboardReportGridService {

  constructor(private _http : HttpClient) { }

  getReportList() : Observable<any>
  {
    return this._http.get(environment.baseUrl + "raptor.htm?action=report.search.execute&r_page=0");
  }
}