aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/abstract.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 23:15:17 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 23:15:17 +0200
commit83f3c20fa76ff383d069ca866cb2eee92fe0c9c8 (patch)
tree52769a06701637218935fd2db777d4cfd796e562 /src/web/controllers/abstract.py
parentMore human readable date format. (diff)
downloadnewspipe-83f3c20fa76ff383d069ca866cb2eee92fe0c9c8.tar.gz
newspipe-83f3c20fa76ff383d069ca866cb2eee92fe0c9c8.tar.bz2
newspipe-83f3c20fa76ff383d069ca866cb2eee92fe0c9c8.zip
It is now possible to filter bookmarks by tags.
Diffstat (limited to 'src/web/controllers/abstract.py')
-rw-r--r--src/web/controllers/abstract.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/controllers/abstract.py b/src/web/controllers/abstract.py
index 8563d5f2..47cc365f 100644
--- a/src/web/controllers/abstract.py
+++ b/src/web/controllers/abstract.py
@@ -50,6 +50,8 @@ class AbstractController:
db_filters.add(getattr(self._db_cls, key[:-4]) != value)
elif key.endswith('__in'):
db_filters.add(getattr(self._db_cls, key[:-4]).in_(value))
+ elif key.endswith('__contains'):
+ db_filters.add(getattr(self._db_cls, key[:-10]).contains(value))
elif key.endswith('__like'):
db_filters.add(getattr(self._db_cls, key[:-6]).like(value))
elif key.endswith('__ilike'):
bgstack15