File

src/app/shared/api/scope.service.ts

Index

Methods

Constructor

constructor(http: HttpClient)
Parameters :
Name Type Optional
http HttpClient No

Methods

list
list()
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');
  }
}

result-matching ""

    No results matching ""