diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-09-23 13:08:18 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-09-23 13:11:08 +0200 |
commit | 3f740966dcd9f65b0c9582e25be596ad69019fac (patch) | |
tree | 4addb6f00bd30d5e95cb2fe70146bea504a45deb /apps/updatenotification/js | |
parent | b4f36d44c43aac0efdc6c70ff8e46473341a9bfe (diff) | |
download | nextcloud-server-3f740966dcd9f65b0c9582e25be596ad69019fac.tar.gz nextcloud-server-3f740966dcd9f65b0c9582e25be596ad69019fac.zip |
Revert "Show an update button instead of the updater"
This reverts commit 202ae42506e9bbb167889735b2c56ccebace594b.
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/updatenotification/js')
-rw-r--r-- | apps/updatenotification/js/admin.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/updatenotification/js/admin.js b/apps/updatenotification/js/admin.js index e60e77ab89a..3ca45a191d4 100644 --- a/apps/updatenotification/js/admin.js +++ b/apps/updatenotification/js/admin.js @@ -13,7 +13,33 @@ /** * Creates a new authentication token and loads the updater URL */ +var loginToken = ''; $(document).ready(function(){ + $('#oca_updatenotification_button').click(function() { + // Load the new token + $.ajax({ + url: OC.generateUrl('/apps/updatenotification/credentials') + }).success(function(data) { + loginToken = data; + $.ajax({ + url: OC.webroot+'/updater/', + headers: { + 'X-Updater-Auth': loginToken + }, + method: 'POST', + success: function(data){ + if(data !== 'false') { + var body = $('body'); + $('head').remove(); + body.html(data); + body.removeAttr('id'); + body.attr('id', 'body-settings'); + } + } + }); + }); + }); + $('#release-channel').change(function() { var newChannel = $('#release-channel').find(":selected").val(); |