diff options
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Files/Folder.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/public/Files/Folder.php b/lib/public/Files/Folder.php index 912c5472fac..eb81a2098ec 100644 --- a/lib/public/Files/Folder.php +++ b/lib/public/Files/Folder.php @@ -142,6 +142,16 @@ interface Folder extends Node { public function searchByTag($tag, $userId); /** + * search for files by system tag + * + * @param string|int $tag tag name + * @param string $userId user id to ensure access on returned nodes + * @return \OCP\Files\Node[] + * @since 28.0.0 + */ + public function searchBySystemTag(string $tagName, string $userId, int $limit = 0, int $offset = 0); + + /** * get a file or folder inside the folder by it's internal id * * This method could return multiple entries. For example once the file/folder |