<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class DefaultController extends AbstractController
{
/**
* @Route("/", name="home")
*/
public function indexAction()
{
if ($this->getUser()->needsSetup()) {
$response = $this->render('Security/requiredUserSetup.html.twig');
} else {
$response = $this->render('Clientes/index.html.twig');
}
//1 semana
//$response->setMaxAge(604800);
return $response;
}
}