diff options
author | Robin Appelman <robin@icewind.nl> | 2016-07-22 15:20:51 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-07-22 15:20:51 +0200 |
commit | 2e3114cc28b44468d449838c3b75ed7e4e5decea (patch) | |
tree | 2b62a1aca17e8c996a31565f484ae7d0b1f55ea8 /apps/files/recentlist.php | |
parent | b94ff97a77be3947e62373cd4c6b75d7dfe5e5cc (diff) | |
download | nextcloud-server-2e3114cc28b44468d449838c3b75ed7e4e5decea.tar.gz nextcloud-server-2e3114cc28b44468d449838c3b75ed7e4e5decea.zip |
Add recent file listing
Diffstat (limited to 'apps/files/recentlist.php')
-rw-r--r-- | apps/files/recentlist.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/recentlist.php b/apps/files/recentlist.php new file mode 100644 index 00000000000..1976be4894a --- /dev/null +++ b/apps/files/recentlist.php @@ -0,0 +1,7 @@ +<?php +// Check if we are a user +OCP\User::checkLoggedIn(); + +$tmpl = new OCP\Template('files', 'recentlist', ''); + +$tmpl->printPage(); |