parent
421268c348
commit
eaf0a372f3
@ -1,25 +0,0 @@ |
|||||||
<?php |
|
||||||
|
|
||||||
declare(strict_types=1); |
|
||||||
|
|
||||||
/* For licensing terms, see /license.txt */ |
|
||||||
|
|
||||||
namespace Chamilo\CoreBundle\Security; |
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\JsonResponse; |
|
||||||
use Symfony\Component\HttpFoundation\Request; |
|
||||||
use Symfony\Component\HttpFoundation\Response; |
|
||||||
use Symfony\Component\Security\Core\Exception\AccessDeniedException; |
|
||||||
use Symfony\Component\Security\Http\Authorization\AccessDeniedHandlerInterface; |
|
||||||
|
|
||||||
class AccessDeniedHandler implements AccessDeniedHandlerInterface |
|
||||||
{ |
|
||||||
public function handle(Request $request, AccessDeniedException $accessDeniedException) |
|
||||||
{ |
|
||||||
$data = [ |
|
||||||
'error' => 'AccessDeniedHandler', |
|
||||||
]; |
|
||||||
|
|
||||||
return new JsonResponse($data, Response::HTTP_FORBIDDEN, [], true); |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue