aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-02 15:41:08 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-02 15:41:08 +0200
commitc3f8b428dd50578a6eba5f4673ea1c9edabd2512 (patch)
tree1a24365071236c8dc6fca51d80e3ea348893f87c /src/Wallabag/ApiBundle/Controller/WallabagRestController.php
parent1dc3bee6b916b228c596a45d20dc6ae14ac555cb (diff)
downloadwallabag-c3f8b428dd50578a6eba5f4673ea1c9edabd2512.tar.gz
wallabag-c3f8b428dd50578a6eba5f4673ea1c9edabd2512.tar.zst
wallabag-c3f8b428dd50578a6eba5f4673ea1c9edabd2512.zip
Fix parameters in API _links
We forgot to pass them to the factory
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller/WallabagRestController.php')
-rw-r--r--src/Wallabag/ApiBundle/Controller/WallabagRestController.php17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
index 104720a9..791bf80b 100644
--- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
+++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
@@ -82,8 +82,8 @@ class WallabagRestController extends FOSRestController
82 $order = $request->query->get('order', 'desc'); 82 $order = $request->query->get('order', 'desc');
83 $page = (int) $request->query->get('page', 1); 83 $page = (int) $request->query->get('page', 1);
84 $perPage = (int) $request->query->get('perPage', 30); 84 $perPage = (int) $request->query->get('perPage', 30);
85 $since = $request->query->get('since', 0);
86 $tags = $request->query->get('tags', ''); 85 $tags = $request->query->get('tags', '');
86 $since = $request->query->get('since', 0);
87 87
88 $pager = $this->getDoctrine() 88 $pager = $this->getDoctrine()
89 ->getRepository('WallabagCoreBundle:Entry') 89 ->getRepository('WallabagCoreBundle:Entry')
@@ -95,7 +95,20 @@ class WallabagRestController extends FOSRestController
95 $pagerfantaFactory = new PagerfantaFactory('page', 'perPage'); 95 $pagerfantaFactory = new PagerfantaFactory('page', 'perPage');
96 $paginatedCollection = $pagerfantaFactory->createRepresentation( 96 $paginatedCollection = $pagerfantaFactory->createRepresentation(
97 $pager, 97 $pager,
98 new Route('api_get_entries', [], UrlGeneratorInterface::ABSOLUTE_URL) 98 new Route(
99 'api_get_entries',
100 [
101 'archive' => $isArchived,
102 'starred' => $isStarred,
103 'sort' => $sort,
104 'order' => $order,
105 'page' => $page,
106 'perPage' => $perPage,
107 'tags' => $tags,
108 'since' => $since,
109 ],
110 UrlGeneratorInterface::ABSOLUTE_URL
111 )
99 ); 112 );
100 113
101 $json = $this->get('serializer')->serialize($paginatedCollection, 'json'); 114 $json = $this->get('serializer')->serialize($paginatedCollection, 'json');