diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-06-25 16:27:38 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2016-06-29 09:55:57 +0200 |
commit | 28803f106bd091b5a7540a134cba2545d12d25ea (patch) | |
tree | 111ef5e6252e4808f00c21cd8cc7b4813a1a22ff /src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |
parent | a314b920bf20feedbeee6ce0432be89901091481 (diff) | |
download | wallabag-28803f106bd091b5a7540a134cba2545d12d25ea.tar.gz wallabag-28803f106bd091b5a7540a134cba2545d12d25ea.tar.zst wallabag-28803f106bd091b5a7540a134cba2545d12d25ea.zip |
Add filter for tags on API
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller/WallabagRestController.php')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/WallabagRestController.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index 4fae4b0a..03eb9b08 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -51,10 +51,11 @@ class WallabagRestController extends FOSRestController | |||
51 | $page = (int) $request->query->get('page', 1); | 51 | $page = (int) $request->query->get('page', 1); |
52 | $perPage = (int) $request->query->get('perPage', 30); | 52 | $perPage = (int) $request->query->get('perPage', 30); |
53 | $since = $request->query->get('since', 0); | 53 | $since = $request->query->get('since', 0); |
54 | $tags = $request->query->get('tags', ''); | ||
54 | 55 | ||
55 | $pager = $this->getDoctrine() | 56 | $pager = $this->getDoctrine() |
56 | ->getRepository('WallabagCoreBundle:Entry') | 57 | ->getRepository('WallabagCoreBundle:Entry') |
57 | ->findEntries($this->getUser()->getId(), $isArchived, $isStarred, $sort, $order, $since); | 58 | ->findEntries($this->getUser()->getId(), $isArchived, $isStarred, $sort, $order, $since, $tags); |
58 | 59 | ||
59 | $pager->setCurrentPage($page); | 60 | $pager->setCurrentPage($page); |
60 | $pager->setMaxPerPage($perPage); | 61 | $pager->setMaxPerPage($perPage); |