initiate phraseanet service admin

This commit is contained in:
aynsix
2020-07-28 10:50:46 +03:00
parent 7cb92db256
commit 206f1f5941
6 changed files with 80 additions and 1 deletions

View File

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