diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2021-07-15 12:46:14 +0000 |
---|---|---|
committer | MichaIng <micha@dietpi.com> | 2021-07-23 15:56:28 +0200 |
commit | 6e5191b7021b448a48d741233bd17ab3c222119f (patch) | |
tree | 26c353643f5d1dd764d512e1fd15e15168d54346 /apps/updatenotification/src/components/UpdateNotification.vue | |
parent | 229bfcbab56e2de473d2d34bb7d86b5665d4ab35 (diff) | |
download | nextcloud-server-6e5191b7021b448a48d741233bd17ab3c222119f.tar.gz nextcloud-server-6e5191b7021b448a48d741233bd17ab3c222119f.zip |
Bump @nextcloud/router from 1.2.0 to 2.0.0
Bumps [@nextcloud/router](https://github.com/nextcloud/nextcloud-router) from 1.2.0 to 2.0.0.
- [Release notes](https://github.com/nextcloud/nextcloud-router/releases)
- [Changelog](https://github.com/nextcloud/nextcloud-router/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/nextcloud-router/compare/v1.2.0...v2.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/updatenotification/src/components/UpdateNotification.vue')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index 5c12fa76a6e..5d13f740dcb 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -298,7 +298,7 @@ export default { } $.ajax({ - url: generateOcsUrl('apps/updatenotification/api/v1/applist', 2) + this.newVersion, + url: generateOcsUrl('apps/updatenotification/api/v1/applist/{newVersion}', { newVersion: this.newVersion }), type: 'GET', beforeSend(request) { request.setRequestHeader('Accept', 'application/json') @@ -356,7 +356,7 @@ export default { }.bind(this)) $.ajax({ - url: generateOcsUrl('cloud', 2) + '/groups', + url: generateOcsUrl('cloud/groups'), dataType: 'json', success: function(data) { const results = [] |