mirror of
https://github.com/nextcloud/server.git
synced 2026-03-08 18:28:16 +01: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>
16 lines
418 B
JavaScript
16 lines
418 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import { getCSPNonce } from '@nextcloud/auth'
|
|
|
|
import './share.js'
|
|
import './sharebreadcrumbview.js'
|
|
import './style/sharebreadcrumb.scss'
|
|
import './collaborationresourceshandler.js'
|
|
|
|
// eslint-disable-next-line camelcase
|
|
__webpack_nonce__ = getCSPNonce()
|
|
|
|
window.OCA.Sharing = OCA.Sharing
|