Code

< 40 %
40-60 %
> 60 %
1
<?php
2
3
/**
4
 * ownCloud - Documents App
5
 *
6
 * @author Victor Dubiniuk
7
 * @copyright 2013 Victor Dubiniuk [email protected]
8
 *
9
 * This file is licensed under the Affero General Public License version 3 or
10
 * later.
11
 */
12
13
namespace OCA\Documents;
14
15
use \OCA\Documents\AppInfo\Application;
16
17
$app = new Application();
18
$response = $app->getContainer()->query('\OCA\Documents\Controller\SettingsController')->personalIndex();
19
return $response->render();
20