aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Controller/EntryRestController.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2018-10-24 20:29:33 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-01-22 20:42:25 +0100
commit801042544444d58580d87d04d5602797027153fc (patch)
treedaa4372bde6396d00b4bdadd3ce4567789dd25ac /src/Wallabag/ApiBundle/Controller/EntryRestController.php
parent019e1acc4962229a538421b6f2b0643d03c1d72c (diff)
downloadwallabag-801042544444d58580d87d04d5602797027153fc.tar.gz
wallabag-801042544444d58580d87d04d5602797027153fc.tar.zst
wallabag-801042544444d58580d87d04d5602797027153fc.zip
Fix third argument to Route
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller/EntryRestController.php')
-rw-r--r--src/Wallabag/ApiBundle/Controller/EntryRestController.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php
index a79e852c..16d8a40b 100644
--- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php
+++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php
@@ -10,7 +10,6 @@ use Symfony\Component\HttpFoundation\Request;
10use Symfony\Component\HttpFoundation\Response; 10use Symfony\Component\HttpFoundation\Response;
11use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; 11use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
12use Symfony\Component\HttpKernel\Exception\HttpException; 12use Symfony\Component\HttpKernel\Exception\HttpException;
13use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
14use Wallabag\CoreBundle\Entity\Entry; 13use Wallabag\CoreBundle\Entity\Entry;
15use Wallabag\CoreBundle\Entity\Tag; 14use Wallabag\CoreBundle\Entity\Tag;
16use Wallabag\CoreBundle\Event\EntryDeletedEvent; 15use Wallabag\CoreBundle\Event\EntryDeletedEvent;
@@ -140,7 +139,7 @@ class EntryRestController extends WallabagRestController
140 'tags' => $tags, 139 'tags' => $tags,
141 'since' => $since, 140 'since' => $since,
142 ], 141 ],
143 UrlGeneratorInterface::ABSOLUTE_URL 142 true
144 ) 143 )
145 ); 144 );
146 145