1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

fix tests for GET /entries/tags

This commit is contained in:
Nicolas Lœuillet 2015-02-27 15:24:36 +01:00
parent 1df1204d94
commit b0cce9e636
3 changed files with 24 additions and 4 deletions

View file

@ -6,6 +6,7 @@ use Nelmio\ApiDocBundle\Annotation\ApiDoc;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\Tag;
use Wallabag\CoreBundle\Service\Extractor;
@ -246,7 +247,7 @@ class WallabagRestController extends Controller
$json = $this->get('serializer')->serialize($entry->getTags(), 'json');
return new JsonResponse($json, 200);
return new Response($json, 200, array('application/json'));
}
/**