admin: admin section for thirdparty

This commit is contained in:
nobohan
2022-05-09 17:14:25 +02:00
parent 1c04a873c0
commit 1a764025e1
5 changed files with 50 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
<?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');
}
}