Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/files/fileinfo.js')
-rw-r--r--core/src/files/fileinfo.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/core/src/files/fileinfo.js b/core/src/files/fileinfo.js
index ea49e8c1447..3fe90f82ac9 100644
--- a/core/src/files/fileinfo.js
+++ b/core/src/files/fileinfo.js
@@ -155,7 +155,23 @@
*/
sharePermissions: null,
+ /**
+ * @type Array
+ */
+ shareAttributes: [],
+
quotaAvailableBytes: -1,
+
+ canDownload: function() {
+ for (const i in this.shareAttributes) {
+ const attr = this.shareAttributes[i]
+ if (attr.scope === 'permissions' && attr.key === 'download') {
+ return attr.enabled
+ }
+ }
+
+ return true
+ },
}
if (!OC.Files) {