src/app/shared/api/scope.service.ts
Methods |
constructor(http: HttpClient)
|
||||||
Defined in src/app/shared/api/scope.service.ts:9
|
||||||
Parameters :
|
list |
list()
|
Defined in src/app/shared/api/scope.service.ts:12
|
Returns :
any
|
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { ApiModule } from './api.module';
@Injectable({
providedIn: ApiModule
})
export class ScopeService {
constructor(private http: HttpClient) {}
list() {
return this.http.get('ui-api/scope');
}
}