diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-06-29 09:58:07 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-08-08 14:25:43 +0200 |
commit | 857bb4536628814cdae3591c795bb1e21e9704b7 (patch) | |
tree | 91cd3e2205b5195cc4fe56e58e9136950f20c0d1 /lib | |
parent | 7292a986a0d58011c84111c1020e07a0e5543eee (diff) | |
download | nextcloud-server-857bb4536628814cdae3591c795bb1e21e9704b7.tar.gz nextcloud-server-857bb4536628814cdae3591c795bb1e21e9704b7.zip |
Add comment with IDs of internal share types
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Share/Constants.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/Share/Constants.php b/lib/private/Share/Constants.php index a79bbf677f7..72dc5cd43be 100644 --- a/lib/private/Share/Constants.php +++ b/lib/private/Share/Constants.php @@ -31,6 +31,7 @@ class Constants { const SHARE_TYPE_USER = 0; const SHARE_TYPE_GROUP = 1; + // const SHARE_TYPE_USERGROUP = 2; // Internal type used by DefaultShareProvider const SHARE_TYPE_LINK = 3; const SHARE_TYPE_EMAIL = 4; const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it @@ -39,6 +40,7 @@ class Constants { const SHARE_TYPE_GUEST = 8; const SHARE_TYPE_REMOTE_GROUP = 9; const SHARE_TYPE_ROOM = 10; + // const SHARE_TYPE_USERROOM = 11; // Internal type used by RoomShareProvider const FORMAT_NONE = -1; const FORMAT_STATUSES = -2; |