summaryrefslogtreecommitdiffstats
path: root/apps/files_external/list.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-06-06 13:16:47 +0200
committerVincent Petry <pvince81@owncloud.com>2014-06-06 15:06:26 +0200
commit01c2c3107a8370fc57dc6144dcdcc108a92347a9 (patch)
tree725548f12f0906942aaaf6b1154546c7936fee5f /apps/files_external/list.php
parent933c05566e21c27e4f2d4b4e9c2d54e7b363d304 (diff)
downloadnextcloud-server-01c2c3107a8370fc57dc6144dcdcc108a92347a9.tar.gz
nextcloud-server-01c2c3107a8370fc57dc6144dcdcc108a92347a9.zip
Added external storage list in files app
Diffstat (limited to 'apps/files_external/list.php')
-rw-r--r--apps/files_external/list.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_external/list.php b/apps/files_external/list.php
new file mode 100644
index 00000000000..e9517724f2f
--- /dev/null
+++ b/apps/files_external/list.php
@@ -0,0 +1,11 @@
+<?php
+
+// Check if we are a user
+OCP\User::checkLoggedIn();
+
+$tmpl = new OCP\Template('files_external', 'list', '');
+
+OCP\Util::addScript('files_external', 'app');
+OCP\Util::addScript('files_external', 'mountsfilelist');
+
+$tmpl->printPage();