mirror of
https://framagit.org/tykayn/date-poll-api
synced 2023-08-25 08:23:11 +02:00
22 lines
424 B
PHP
Executable File
22 lines
424 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use FOS\RestBundle\Controller\Annotations\Get;
|
|
use FOS\RestBundle\Controller\Annotations\Route;
|
|
|
|
/**
|
|
* Class DefaultController
|
|
* @package App\Controller
|
|
* @Route("/",name="homepage")
|
|
*/
|
|
class IndexController extends FramadateController {
|
|
/**
|
|
* @Get(path ="/",
|
|
* name = "get_default")
|
|
*/
|
|
public function indexAction() {
|
|
return $this->render( 'index.html.twig', [] );
|
|
}
|
|
}
|