diff options
author | Joas Schilling <coding@schilljs.com> | 2019-09-06 13:25:08 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-11-12 17:37:00 +0100 |
commit | 60da25681eb7f7f4b611c0c899b3485a8c66ef65 (patch) | |
tree | 839e1ab7f958ac9ef67417ad7820d629e3ba1023 /lib/public | |
parent | 8986910a7d6a0bd7ee08bca68f1f5008612e38dc (diff) | |
download | nextcloud-server-60da25681eb7f7f4b611c0c899b3485a8c66ef65.tar.gz nextcloud-server-60da25681eb7f7f4b611c0c899b3485a8c66ef65.zip |
Only restrict loading of group and user shares for now
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IShare.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/Share/IShare.php b/lib/public/Share/IShare.php index a4d120da5f4..1064f59e6d5 100644 --- a/lib/public/Share/IShare.php +++ b/lib/public/Share/IShare.php @@ -50,6 +50,12 @@ interface IShare { public const TYPE_GROUP = 1; /** + * @internal + * @since 18.0.0 + */ + public const TYPE_USERGROUP = 2; + + /** * @since 17.0.0 */ public const TYPE_LINK = 3; |