diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 13:16:47 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 15:06:26 +0200 |
commit | 01c2c3107a8370fc57dc6144dcdcc108a92347a9 (patch) | |
tree | 725548f12f0906942aaaf6b1154546c7936fee5f /apps/files_external/list.php | |
parent | 933c05566e21c27e4f2d4b4e9c2d54e7b363d304 (diff) | |
download | nextcloud-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.php | 11 |
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(); |