This commit is contained in:
2025-05-20 20:38:51 +01:00
parent 7a051cf7ad
commit 6a087aae48
6 changed files with 105 additions and 23 deletions

View File

@@ -11,10 +11,11 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Attribute\IsGranted;
use function Symfony\Component\HttpFoundation\Response;
class GuiController extends AbstractController {
#[Route('/')]
#[Route('/', name: 'index')]
#[Template('/index.html.twig')]
public function index(): array {
return [
@@ -37,6 +38,7 @@ class GuiController extends AbstractController {
];
}
#[IsGranted('ROLE_EDITOR')]
#[Route('/notes/write')]
#[Template('/write_note.html.twig')]
public function writeNote(