all quotas
This commit is contained in:
parent
a1717bdeb2
commit
aef130dff4
@ -19,7 +19,7 @@ export class InfoComponent implements OnInit {
|
|||||||
this.permissions = data;
|
this.permissions = data;
|
||||||
})
|
})
|
||||||
|
|
||||||
this.quotaService.quotas().subscribe((data: any) => {
|
this.quotaService.quotasAll().subscribe((data: any) => {
|
||||||
this.quotas = data;
|
this.quotas = data;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -14,6 +14,10 @@ export class QuotaService {
|
|||||||
quotas() {
|
quotas() {
|
||||||
return this.http.get(environment.apiUrl + "/quotas");
|
return this.http.get(environment.apiUrl + "/quotas");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
quotasAll() {
|
||||||
|
return this.http.get(environment.apiUrl + "/quotas/all");
|
||||||
|
}
|
||||||
|
|
||||||
quotasNew() {
|
quotasNew() {
|
||||||
return this.http.get(environment.apiUrl + "/quotas/new");
|
return this.http.get(environment.apiUrl + "/quotas/new");
|
||||||
|
Loading…
Reference in New Issue
Block a user