added tags + filtering

This commit is contained in:
2021-12-01 19:01:17 +01:00
parent 1da276c670
commit 979324ccc8
30 changed files with 526 additions and 84 deletions
@@ -20,8 +20,8 @@ export class PageUserEntries implements OnInit {
this.boundFetch = this.fetch.bind(this);
}
fetch(page: number, size: number) {
return this.entriesService.getByUser(this.username, page, size);
fetch(page: number, size: number, asc: boolean, filter: any) {
return this.entriesService.getByUser(this.username, page, size, asc, filter);
}
}