aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-09-21 14:11:04 +0200
committerGitHub <noreply@github.com>2022-09-21 14:11:04 +0200
commit8268416a2cdd14a75d2ca7aaa1f2707580a121e2 (patch)
treeb44086c48b1c236f350efb8f19e2a31660b78817 /apps/files/js/filelist.js
parentd0ead94aea9e568075bba5aec1b12d959bd67ff1 (diff)
parentd415c656f6b1815ab6a7229bc5268abd5ea97a57 (diff)
downloadnextcloud-server-8268416a2cdd14a75d2ca7aaa1f2707580a121e2.tar.gz
nextcloud-server-8268416a2cdd14a75d2ca7aaa1f2707580a121e2.zip
Merge pull request #34171 from nextcloud/enh/edit-locally
Add edit locally file action
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index ee596dd417e..fff704b9283 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -2807,6 +2807,15 @@
});
},
+ openLocalClient: function(path) {
+ var scheme = 'nc://';
+ var command = 'open';
+ var uid = OC.getCurrentUser().uid;
+ var url = scheme + command + '/' + uid + '@' + window.location.host + (window.location.port ? `:${window.location.port}` : '') + OC.encodePath(path);
+
+ window.location.href = url;
+ },
+
/**
* Updates the given row with the given file info
*