mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
29 lines
676 B
PHP
29 lines
676 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\CalendarBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
class AdminController extends AbstractController
|
|
{
|
|
/**
|
|
* Calendar admin.
|
|
*
|
|
* @Route("/{_locale}/admin/calendar", name="chill_calendar_admin_index")
|
|
*/
|
|
public function indexAdminAction()
|
|
{
|
|
return $this->render('ChillCalendarBundle:Admin:index.html.twig');
|
|
}
|
|
}
|