You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
635 B
24 lines
635 B
<?php |
|
|
|
declare(strict_types=1); |
|
|
|
namespace App\Controller; |
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
|
use Symfony\Component\HttpFoundation\Response; |
|
use Symfony\Component\Routing\Attribute\Route; |
|
|
|
class ReadingListController extends AbstractController |
|
{ |
|
#[Route('/reading-list', name: 'reading_list_index')] |
|
public function index(): Response |
|
{ |
|
return $this->render('reading_list/index.html.twig'); |
|
} |
|
|
|
#[Route('/reading-list/compose', name: 'reading_list_compose')] |
|
public function compose(): Response |
|
{ |
|
return $this->render('reading_list/compose.html.twig'); |
|
} |
|
}
|
|
|