richdocuments/admin.php

11 lines
232 B
PHP
Raw Normal View History

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