mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 10:22:14 +01:00
cs
This commit is contained in:
parent
351eb8d97e
commit
c7935f32d2
@ -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;
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user