diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-12-03 16:02:47 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-12-09 13:20:23 +0100 |
commit | e906138d8da5908917fb523cb3e3484372cea16b (patch) | |
tree | d6d887a263a5add7b55fac12cae15196291b6f65 /lib/private/Share | |
parent | fcc0d358959f9134ad5f2023f66fa833f6383fba (diff) | |
download | nextcloud-server-e906138d8da5908917fb523cb3e3484372cea16b.tar.gz nextcloud-server-e906138d8da5908917fb523cb3e3484372cea16b.zip |
Let sharees endpoint properly handle deck shares
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/private/Share')
-rw-r--r-- | lib/private/Share/Constants.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Share/Constants.php b/lib/private/Share/Constants.php index 2310859c5be..0ba68428c87 100644 --- a/lib/private/Share/Constants.php +++ b/lib/private/Share/Constants.php @@ -70,6 +70,10 @@ class Constants { */ public const SHARE_TYPE_ROOM = 10; // const SHARE_TYPE_USERROOM = 11; // Internal type used by RoomShareProvider + /** + * @deprecated 21.0.0 - use IShare::TYPE_ROOM instead + */ + public const SHARE_TYPE_DECK = 12; public const FORMAT_NONE = -1; public const FORMAT_STATUSES = -2; |