add health path
This commit is contained in:
parent
87fe4ad16a
commit
9abc04fd25
|
@ -8,6 +8,7 @@ use App\Hydra\HydraService;
|
|||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
||||
use Symfony\Component\Routing\Annotation\Route;
|
||||
|
||||
|
@ -30,6 +31,12 @@ class MainController extends AbstractController
|
|||
return $this->hydra->handleLoginRequest($request);
|
||||
}
|
||||
|
||||
#[Route('/health', name: 'health')]
|
||||
public function health()
|
||||
{
|
||||
return new Response('healthy', 200);
|
||||
}
|
||||
|
||||
#[Route('/connect/login-accept', name: 'app_login_accept')]
|
||||
public function loginAccept(Request $request)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue