diff options
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(); |