diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-06-30 13:45:23 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-08-08 14:25:43 +0200 |
commit | 523fdb612c26281873d0dad6e193630de468b154 (patch) | |
tree | 2e53fa46f075fd6e2f23a488f951df143bacea28 /apps/files_sharing/js | |
parent | 1ccc99ed8349a3318b799b485e80140643dfbe0c (diff) | |
download | nextcloud-server-523fdb612c26281873d0dad6e193630de468b154.tar.gz nextcloud-server-523fdb612c26281873d0dad6e193630de468b154.zip |
Add room shares to DAV and recent files "share-types" property
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index a925920f3bc..0f8dc58a85e 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -144,6 +144,8 @@ hasShares = true; } else if (shareType === OC.Share.SHARE_TYPE_CIRCLE) { hasShares = true; + } else if (shareType === OC.Share.SHARE_TYPE_ROOM) { + hasShares = true; } }); OCA.Sharing.Util._updateFileActionIcon($tr, hasShares, hasLink); |