<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
#[Route('/notifications', name: 'notifications_')]
class NotificationsController extends AbstractController
{
#[Route('/list', name: 'list')]
public function notifyList(): Response
{
return $this->render('notifications/list.html.twig', [
]);
}
#[Route('/tap', name: 'jsontap')]
public function notifyTap(): JsonResponse
{
return $this->render('notifications/list.html.twig', [
]);
}
#[Route('/tapList', name: 'jsontaplist')]
public function notifyTapList(): JsonResponse
{
return $this->render('notifications/list.html.twig', [
]);
}
}