Files
Phraseanet/lib/Alchemy/Phrasea/PhraseanetService/Controller/PSAdminController.php
2020-07-28 10:50:46 +03:00

16 lines
354 B
PHP

<?php
namespace Alchemy\Phrasea\PhraseanetService\Controller;
use Alchemy\Phrasea\Application as PhraseaApplication;
use Alchemy\Phrasea\Controller\Controller;
class PSAdminController extends Controller
{
public function indexAction(PhraseaApplication $app)
{
return $this->render('admin/phraseanet-service/index.html.twig');
}
}