Security: interruption du traitement si pas d'utilisateur authentifié

This commit is contained in:
wpetit 2020-02-19 14:49:45 +01:00
parent 325d986505
commit a311d67f39
1 changed files with 2 additions and 7 deletions

View File

@ -4,8 +4,8 @@ namespace App\Controller;
use App\Http\DataResponse;
use App\Http\ErrorResponse;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class SecurityController extends Controller
@ -18,12 +18,7 @@ class SecurityController extends Controller
$user = $this->getUser();
if ($user == null) {
return new ErrorResponse(
0,
"Identifiants invalides",
null,
401,
);
return null;
}
return new DataResponse([