summaryrefslogtreecommitdiffstats
path: root/admin/admin.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/admin.php')
-rw-r--r--admin/admin.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/admin/admin.php b/admin/admin.php
deleted file mode 100644
index 938123850..000000000
--- a/admin/admin.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
- */
-
-namespace OCA\News\Admin;
-
-use OCA\News\AppInfo\Application;
-use OCA\News\Controller\AdminController;
-
-$app = new Application();
-$container = $app->getContainer();
-$response = $container->query(AdminController::class)->index();
-
-return $response->render();