mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-17 15:54:23 +00:00
29 lines
686 B
PHP
29 lines
686 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\ThirdPartyBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
class AdminController extends AbstractController
|
|
{
|
|
/**
|
|
* ThirdParty admin.
|
|
*
|
|
* @Route("/{_locale}/admin/thirdparty", name="chill_thirdparty_admin_index")
|
|
*/
|
|
public function indexAdminAction()
|
|
{
|
|
return $this->render('ChillThirdPartyBundle:Admin:index.html.twig');
|
|
}
|
|
}
|