mirror of
https://github.com/nextcloud/server.git
synced 2026-03-31 06:36:18 -04:00
some leftovers where the request token is used instead of the CSP nonce. in general this makes not much difference - but there are some cases where those values differ. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
20 lines
562 B
JavaScript
20 lines
562 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import { getCSPNonce } from '@nextcloud/auth'
|
|
import Vue from 'vue'
|
|
|
|
import ArtificialIntelligence from './components/AdminAI.vue'
|
|
|
|
// eslint-disable-next-line camelcase
|
|
__webpack_nonce__ = getCSPNonce()
|
|
|
|
Vue.prototype.t = t
|
|
|
|
// Not used here but required for legacy templates
|
|
window.OC = window.OC || {}
|
|
window.OC.Settings = window.OC.Settings || {}
|
|
|
|
const View = Vue.extend(ArtificialIntelligence)
|
|
new View().$mount('#ai-settings')
|