diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-12-08 12:59:09 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-12-09 13:20:24 +0100 |
commit | c770d337177b135fa6d225a28b5517dfb5483bd2 (patch) | |
tree | ec02c745dca68e75bd0519743e03f865ebc9a4da /lib/public | |
parent | f3150f29a7256a502df6990dd9f8126d76fe3a80 (diff) | |
download | nextcloud-server-c770d337177b135fa6d225a28b5517dfb5483bd2.tar.gz nextcloud-server-c770d337177b135fa6d225a28b5517dfb5483bd2.zip |
Add internal DECK_USER type to allow unsharing for individual users
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IShare.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/public/Share/IShare.php b/lib/public/Share/IShare.php index 1e40d7f6650..4bd290d66c8 100644 --- a/lib/public/Share/IShare.php +++ b/lib/public/Share/IShare.php @@ -111,6 +111,11 @@ interface IShare { public const TYPE_DECK = 12; /** + * @internal 21.00 + */ + public const TYPE_DECK_USER = 13; + + /** * @since 18.0.0 */ public const STATUS_PENDING = 0; |