diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-12 15:01:46 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-12 15:01:46 +0100 |
commit | eac5d9fb3a52932fafdb200a2cf5d50fe9f1c759 (patch) | |
tree | b5ebb8da406d6d667632beb4b764568c8ff954a3 /apps | |
parent | 2493cfede92c472c29cffc098206b8cdb7a2ca30 (diff) | |
parent | 0d0377ebfb123e079822632ae4bc6855a11eb117 (diff) | |
download | nextcloud-server-eac5d9fb3a52932fafdb200a2cf5d50fe9f1c759.tar.gz nextcloud-server-eac5d9fb3a52932fafdb200a2cf5d50fe9f1c759.zip |
Merge pull request #21336 from owncloud/system-root-certs
Allow admins to add system wide root certificates
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/js/settings.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 59cf55d6ad5..2f879e1c850 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -1210,13 +1210,6 @@ $(document).ready(function() { }); mountConfigListView.loadStorages(); - $('#sslCertificate').on('click', 'td.remove>img', function() { - var $tr = $(this).closest('tr'); - $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: $tr.attr('id')}); - $tr.remove(); - return true; - }); - // TODO: move this into its own View class var $allowUserMounting = $('#allowUserMounting'); $allowUserMounting.bind('change', function() { |