mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
16 lines
354 B
PHP
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');
|
|
}
|
|
|
|
}
|