nextcloud/core/src/public-share-auth.ts
Ferdinand Thiessen 752a62133a
chore: fix or ignore linter issues
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2026-01-15 23:30:21 +01:00

14 lines
393 B
TypeScript

/*!
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { getCSPNonce } from '@nextcloud/auth'
import Vue from 'vue'
import PublicShareAuth from './views/PublicShareAuth.vue'
__webpack_nonce__ = getCSPNonce()
const View = Vue.extend(PublicShareAuth)
const app = new View()
app.$mount('#core-public-share-auth')