]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/api/scope.service.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / api / scope.service.ts
1 import { HttpClient } from '@angular/common/http';
2 import { Injectable } from '@angular/core';
3
4 @Injectable({
5 providedIn: 'root'
6 })
7 export class ScopeService {
8 constructor(private http: HttpClient) {}
9
10 list() {
11 return this.http.get('ui-api/scope');
12 }
13 }