Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2019-02-22 18:36:25 +0300
committerRobin Appelman <robin@icewind.nl>2019-02-25 18:06:09 +0300
commitdb750898ee3cb165218f4428265ab9dc258c93c2 (patch)
tree5a9e6472b98992b35b62ca7d5d1b1273f8466f48 /lib/public/IGroup.php
parentd7538f9a61a2af288d82fc257524aee5c2f86769 (diff)
allow group backends to mark that a group should now be shown in search dialogs
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/IGroup.php')
-rw-r--r--lib/public/IGroup.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/IGroup.php b/lib/public/IGroup.php
index 8fa87e35ce3..48fa84df393 100644
--- a/lib/public/IGroup.php
+++ b/lib/public/IGroup.php
@@ -138,4 +138,10 @@ interface IGroup {
* @since 14.0.0
*/
public function canAddUser();
+
+ /**
+ * @return bool
+ * @since 16.0.0
+ */
+ public function hideFromCollaboration(): bool;
}