feat(mobile): filter by tags (#26196)

filter by tags
This commit is contained in:
Benjamin Nguyen 2026-02-18 13:16:26 -08:00 committed by GitHub
parent 227ff70b6e
commit ae8dad68fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 215 additions and 5 deletions

View file

@ -35,6 +35,7 @@ class ApiService implements Authentication {
late ViewsApi viewApi;
late MemoriesApi memoriesApi;
late SessionsApi sessionsApi;
late TagsApi tagsApi;
ApiService() {
// The below line ensures that the api clients are initialized when the service is instantiated
@ -74,6 +75,7 @@ class ApiService implements Authentication {
viewApi = ViewsApi(_apiClient);
memoriesApi = MemoriesApi(_apiClient);
sessionsApi = SessionsApi(_apiClient);
tagsApi = TagsApi(_apiClient);
}
Future<void> _setUserAgentHeader() async {