we_bstly-web/src/app/services/quota.service.ts
2020-11-02 08:29:52 +01:00

23 lines
458 B
TypeScript

import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { environment } from '../../environments/environment';
@Injectable({
providedIn: 'root',
})
export class QuotaService {
constructor(private http: HttpClient) {
}
quotas() {
return this.http.get(environment.apiUrl + "/quotas");
}
quotasNew() {
return this.http.get(environment.apiUrl + "/quotas/new");
}
}