diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2023-09-06 13:40:55 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2023-09-06 13:40:55 -0100 |
commit | 15eb92f51744b6646708e7f78235368c9d3190a4 (patch) | |
tree | 56583c70dd85a1c01bac7fac89ff7987ac37455f /apps/files_sharing | |
parent | 325e42f2b3760dceb44e40eb5f7724b93d9e3105 (diff) | |
download | nextcloud-server-15eb92f51744b6646708e7f78235368c9d3190a4.tar.gz nextcloud-server-15eb92f51744b6646708e7f78235368c9d3190a4.zip |
enable download configuration on circles shares
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/src/views/SharingDetailsTab.vue | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index dbc8c1508e4..175812a0ff2 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -409,12 +409,6 @@ export default { * @return {boolean} */ isSetDownloadButtonVisible() { - // TODO: Implement download permission for circle shares instead of hiding the option. - // https://github.com/nextcloud/server/issues/39161 - if (this.share && this.share.type === this.SHARE_TYPES.SHARE_TYPE_CIRCLE) { - return false - } - const allowedMimetypes = [ // Office documents 'application/msword', |