diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-04-28 09:56:57 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-04-28 09:56:57 +0200 |
commit | 9e7f7ba7f6402a36c99e662f3596b009767e2c9c (patch) | |
tree | 50bdad669901e55f7748c9f78d74e4aed174f2d8 /lib/private/Share | |
parent | 3fb7de2dfb5099e4acb4f19b3038fb7acb5321c1 (diff) | |
download | nextcloud-server-9e7f7ba7f6402a36c99e662f3596b009767e2c9c.tar.gz nextcloud-server-9e7f7ba7f6402a36c99e662f3596b009767e2c9c.zip |
Add sharing types for guests
Fixes https://github.com/nextcloud/guests/issues/4
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/private/Share')
-rw-r--r-- | lib/private/Share/Constants.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Share/Constants.php b/lib/private/Share/Constants.php index 1eb5b1e078b..95480975da5 100644 --- a/lib/private/Share/Constants.php +++ b/lib/private/Share/Constants.php @@ -33,6 +33,7 @@ class Constants { const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it const SHARE_TYPE_REMOTE = 6; const SHARE_TYPE_CIRCLE = 7; + const SHARE_TYPE_GUEST = 8; const FORMAT_NONE = -1; const FORMAT_STATUSES = -2; |