This commit is contained in:
Baptiste Lemoine 2020-04-25 15:52:30 +02:00
commit 430d424b85
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
<?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->json( ["message"=>"welcome to the framadate api, ask /api/v1/doc.json for endpoints"],200);
// return $this->render( 'index.html.twig', [] );
}
}