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:
authorJoas Schilling <coding@schilljs.com>2019-09-20 12:33:02 +0300
committerJoas Schilling <coding@schilljs.com>2019-09-27 15:29:56 +0300
commit653628c8fb69dc3f9d26751520f91e43a18f17ae (patch)
treeef2dfb5f01bc19e09386364895ec9c8620ec3257 /lib/public/IGroup.php
parent45506adc5c2a34a8c812a2a3c9273a8447b450af (diff)
Allow to set the group display name in the database backend
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/IGroup.php')
-rw-r--r--lib/public/IGroup.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/IGroup.php b/lib/public/IGroup.php
index 48fa84df393..8b0eaf0ec0c 100644
--- a/lib/public/IGroup.php
+++ b/lib/public/IGroup.php
@@ -48,6 +48,15 @@ interface IGroup {
public function getDisplayName();
/**
+ * Set the group display name
+ *
+ * @param string $displayName
+ * @return bool
+ * @since 18.0.0
+ */
+ public function setDisplayName(string $displayName): bool;
+
+ /**
* get all users in the group
*
* @return \OCP\IUser[]