diff options
author | Robin Appelman <robin@icewind.nl> | 2019-02-22 16:36:25 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-02-25 16:06:09 +0100 |
commit | db750898ee3cb165218f4428265ab9dc258c93c2 (patch) | |
tree | 5a9e6472b98992b35b62ca7d5d1b1273f8466f48 /lib/public/IGroup.php | |
parent | d7538f9a61a2af288d82fc257524aee5c2f86769 (diff) | |
download | nextcloud-server-db750898ee3cb165218f4428265ab9dc258c93c2.tar.gz nextcloud-server-db750898ee3cb165218f4428265ab9dc258c93c2.zip |
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.php | 6 |
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; } |