all quotas
This commit is contained in:
parent
a1717bdeb2
commit
aef130dff4
@ -19,7 +19,7 @@ export class InfoComponent implements OnInit {
|
||||
this.permissions = data;
|
||||
})
|
||||
|
||||
this.quotaService.quotas().subscribe((data: any) => {
|
||||
this.quotaService.quotasAll().subscribe((data: any) => {
|
||||
this.quotas = data;
|
||||
})
|
||||
|
||||
|
@ -15,6 +15,10 @@ export class QuotaService {
|
||||
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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user