0c1781bcf494feef77b12512bc541e7a28f04565
[portal/sdk.git] /
1 import { Injectable } from '@angular/core';
2 import { HttpClient, HttpHeaders } from '@angular/common/http';
3 import { Observable } from 'rxjs';
4 import { environment } from '../../../../../../../environments/environment';
5
6 @Injectable({
7   providedIn: 'root'
8 })
9 export class DashboardReportGridService {
10
11   constructor(private _http : HttpClient) { }
12
13   getReportList() : Observable<any>
14   {
15     return this._http.get(environment.baseUrl + "raptor.htm?action=report.search.execute&r_page=0&show_all=true");
16   }
17 }