we_bstly-web/src/app/services/quota.service.ts
2021-06-01 12:24:55 +02:00

27 lines
549 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");
}
quotasAll() {
return this.http.get(environment.apiUrl + "/quotas/all");
}
quotasNew() {
return this.http.get(environment.apiUrl + "/quotas/new");
}
}