richdocuments/admin.php

11 lines
244 B
PHP
Raw Normal View History

2014-03-31 20:27:07 +03:00
<?php
2015-12-16 17:57:44 +03:00
namespace OCA\Richdocuments;
2014-03-31 20:27:07 +03:00
2015-12-16 17:57:44 +03:00
use \OCA\Richdocuments\AppInfo\Application;
2014-03-31 20:27:07 +03:00
2015-08-26 20:16:53 +03:00
$app = new Application();
2015-12-16 17:57:44 +03:00
$response = $app->getContainer()->query('\OCA\Richdocuments\Controller\SettingsController')->adminIndex();
2015-08-26 20:16:53 +03:00
return $response->render();
2014-03-31 20:27:07 +03:00