diff options
author | Robin Appelman <robin@icewind.nl> | 2016-07-22 14:37:37 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-07-22 14:39:32 +0200 |
commit | e321ecd592fef123772c6e61e175b6a34a3c5044 (patch) | |
tree | 017e79025c2f9431d4631667886173f9f5df0281 /lib/private/Files/Node/LazyRoot.php | |
parent | d499f68fd72bb6839023aa91fb2028587a62c496 (diff) | |
download | nextcloud-server-e321ecd592fef123772c6e61e175b6a34a3c5044.tar.gz nextcloud-server-e321ecd592fef123772c6e61e175b6a34a3c5044.zip |
add recent files to node api
Diffstat (limited to 'lib/private/Files/Node/LazyRoot.php')
-rw-r--r-- | lib/private/Files/Node/LazyRoot.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/private/Files/Node/LazyRoot.php b/lib/private/Files/Node/LazyRoot.php index 1203fc4d162..adc41153313 100644 --- a/lib/private/Files/Node/LazyRoot.php +++ b/lib/private/Files/Node/LazyRoot.php @@ -471,5 +471,10 @@ class LazyRoot implements IRootFolder { return $this->__call(__FUNCTION__, func_get_args()); } - + /** + * @inheritDoc + */ + public function getRecent($type) { + return $this->__call(__FUNCTION__, func_get_args()); + } } |