diff options
author | Baptiste Fotia <fotia.baptiste@hotmail.com> | 2023-12-27 12:56:23 +0100 |
---|---|---|
committer | Baptiste Fotia <fotia.baptiste@hotmail.com> | 2024-01-31 10:44:40 +0100 |
commit | 9af96d9f9ac512d8082cd20303068f06646b4a93 (patch) | |
tree | 9c0c1b4b99a3089f992c0ad7e8e1c446298f85bd /lib/public | |
parent | 7cb7b8b6c3ba0b2c652ad3a6922081388f4c026f (diff) | |
download | nextcloud-server-9af96d9f9ac512d8082cd20303068f06646b4a93.tar.gz nextcloud-server-9af96d9f9ac512d8082cd20303068f06646b4a93.zip |
feat(php,vue): Create a new parameter
Signed-off-by: Baptiste Fotia <fotia.baptiste@hotmail.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IManager.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php index 9ac224ed7ef..07517dd7eb5 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -416,6 +416,15 @@ interface IManager { public function shareWithGroupMembersOnly(); /** + * If shareWithGroupMembersOnly is enabled, return an optional + * list of groups that must be excluded from the principle of + * belonging to the same group. + * @return array + * @since 27.0.0 + */ + public function shareWithGroupMembersOnlyExcludeGroupsList(); + + /** * Check if users can share with groups * @return bool * @since 9.0.1 |