diff --git a/apps/updatenotification/js/updatenotification.js b/apps/updatenotification/js/updatenotification.js index 42e1f3a1c2b62d6a0c3b6fff4e9488e9ea9432f1..2ecd0b03e478a08b147b9bae0ea09ff09451df6a 100644 Binary files a/apps/updatenotification/js/updatenotification.js and b/apps/updatenotification/js/updatenotification.js differ diff --git a/apps/updatenotification/js/updatenotification.js.map b/apps/updatenotification/js/updatenotification.js.map index 87834c6ffba59b2e945eda03528cce6885667488..2f9a15d8f7369b7b4db04e527f45cc76b37e326d 100644 Binary files a/apps/updatenotification/js/updatenotification.js.map and b/apps/updatenotification/js/updatenotification.js.map differ diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index 4d7df8d68d48619b9cba6cc8a11c8d7ec4c9c00b..b7b43b6b88025d3b8874690bc24922586cc43e15 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -109,6 +109,7 @@ </template> <script> +import { generateUrl, getRootUrl, generateOcsUrl } from '@nextcloud/router' import { PopoverMenu, Multiselect } from '@nextcloud/vue' import { VTooltip } from 'v-tooltip' import ClickOutside from 'vue-click-outside' @@ -287,7 +288,7 @@ export default { } $.ajax({ - url: OC.linkToOCS('apps/updatenotification/api/v1/applist', 2) + this.newVersion, + url: generateOcsUrl('apps/updatenotification/api/v1/applist', 2) + this.newVersion, type: 'GET', beforeSend: function(request) { request.setRequestHeader('Accept', 'application/json') @@ -344,7 +345,7 @@ export default { }.bind(this)) $.ajax({ - url: OC.linkToOCS('cloud', 2) + '/groups', + url: generateOcsUrl('cloud', 2) + '/groups', dataType: 'json', success: function(data) { const results = [] @@ -364,12 +365,12 @@ export default { */ clickUpdaterButton: function() { $.ajax({ - url: OC.generateUrl('/apps/updatenotification/credentials'), + url: generateUrl('/apps/updatenotification/credentials'), }).success(function(token) { // create a form to send a proper post request to the updater const form = document.createElement('form') form.setAttribute('method', 'post') - form.setAttribute('action', OC.getRootPath() + '/updater/') + form.setAttribute('action', getRootUrl() + '/updater/') const hiddenField = document.createElement('input') hiddenField.setAttribute('type', 'hidden') @@ -395,7 +396,7 @@ export default { this.currentChannel = channel $.ajax({ - url: OC.generateUrl('/apps/updatenotification/channel'), + url: generateUrl('/apps/updatenotification/channel'), type: 'POST', data: { 'channel': this.currentChannel,