mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-14 06:14:23 +00:00
27 lines
617 B
PHP
27 lines
617 B
PHP
<?php
|
|
|
|
/**
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\MainBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
class AdminController extends AbstractController
|
|
{
|
|
/**
|
|
* @Route("/{_locale}/admin", name="chill_main_admin_central")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
return $this->render('@ChillMain/Admin/index.html.twig');
|
|
}
|
|
}
|