mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
ci: add php cs fixer
This commit is contained in:
@@ -12,29 +12,30 @@ use Symfony\Component\Routing\RouterInterface;
|
||||
|
||||
class HomeController extends AbstractController
|
||||
{
|
||||
|
||||
public function __construct(private readonly RouterInterface $router)
|
||||
{
|
||||
}
|
||||
|
||||
#[Route(path: "/", name: "index")]
|
||||
#[Route(path: '/', name: 'index')]
|
||||
public function index(): Response
|
||||
{
|
||||
return $this->render('base.html.twig');
|
||||
}
|
||||
|
||||
#[Route(path: "/login/oauth", name: "oauth_connect")]
|
||||
#[Route(path: '/login/oauth', name: 'oauth_connect')]
|
||||
public function connectAction(ClientRegistry $clientRegistry): Response
|
||||
{
|
||||
return $clientRegistry->getClient('oauth')->redirect();
|
||||
}
|
||||
|
||||
#[Route(path: "/logout", name: "logout")]
|
||||
#[Route(path: '/logout', name: 'logout')]
|
||||
public function logout(Security $security): ?RedirectResponse
|
||||
{
|
||||
$response = new RedirectResponse($this->router->generate('index'));
|
||||
$response->headers->clearCookie('BEARER');
|
||||
if ($security->isGranted('IS_AUTHENTICATED')) $security->logout(false);
|
||||
if ($security->isGranted('IS_AUTHENTICATED')) {
|
||||
$security->logout(false);
|
||||
}
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user