aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dashboard/src
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-08-13 17:54:47 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-08-13 17:54:47 +0200
commitea021df9fa5e91006a4dabdb330f780c7e1e12cf (patch)
tree634a4c55db904dde477b46e0b5e5b5034631f538 /apps/dashboard/src
parent3e409fd34208afb69b270076e1f503c10101650a (diff)
downloadnextcloud-server-ea021df9fa5e91006a4dabdb330f780c7e1e12cf.tar.gz
nextcloud-server-ea021df9fa5e91006a4dabdb330f780c7e1e12cf.zip
chore(deps): Update `@nextcloud/auth` to v2.4.0 and use `getCSPNonce` where possible
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/dashboard/src')
-rw-r--r--apps/dashboard/src/main.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/dashboard/src/main.js b/apps/dashboard/src/main.js
index f8b92669197..dac34e07498 100644
--- a/apps/dashboard/src/main.js
+++ b/apps/dashboard/src/main.js
@@ -3,14 +3,15 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
-import Vue from 'vue'
-import DashboardApp from './DashboardApp.vue'
+import { getCSPNonce } from '@nextcloud/auth'
import { translate as t } from '@nextcloud/l10n'
import VTooltip from '@nextcloud/vue/dist/Directives/Tooltip.js'
-import { getRequestToken } from '@nextcloud/auth'
+import Vue from 'vue'
+
+import DashboardApp from './DashboardApp.vue'
// eslint-disable-next-line camelcase
-__webpack_nonce__ = btoa(getRequestToken())
+__webpack_nonce__ = getCSPNonce()
Vue.directive('Tooltip', VTooltip)