web: add TablePage

This commit is contained in:
Jens Langhammer
2020-11-30 23:49:33 +01:00
parent 8e25970c01
commit a312ad2ad1
9 changed files with 90 additions and 11 deletions

View File

@ -17,7 +17,7 @@ export class Application {
return DefaultClient.fetch<Application>(["core", "applications", slug]);
}
static list(filter?: { [key: string]: string }): Promise<PBResponse<Application>> {
static list(filter?: { [key: string]: any }): Promise<PBResponse<Application>> {
return DefaultClient.fetch<PBResponse<Application>>(["core", "applications"], filter);
}
}