This commit is contained in:
Thomas Citharel 2016-03-18 22:23:49 +01:00 committed by Jeremy Benoist
parent 351eb8d97e
commit c7935f32d2
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
2 changed files with 0 additions and 4 deletions

View file

@ -3,7 +3,6 @@
namespace Wallabag\AnnotationBundle\Controller;
use FOS\RestBundle\Controller\FOSRestController;
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;

View file

@ -532,7 +532,6 @@ class WallabagRestController extends FOSRestController
*/
public function getAnnotationsAction(Entry $entry)
{
$this->validateAuthentication();
$annotationRows = $this
@ -605,7 +604,6 @@ class WallabagRestController extends FOSRestController
*/
public function putAnnotationAction(Annotation $annotation, Request $request)
{
$this->validateAuthentication();
$data = json_decode($request->getContent(), true);
@ -637,7 +635,6 @@ class WallabagRestController extends FOSRestController
*/
public function deleteAnnotationAction(Annotation $annotation)
{
$this->validateAuthentication();
$em = $this->getDoctrine()->getManager();