You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin-settings.js 454B

123456789101112131415161718
  1. /**
  2. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. */
  5. import { getRequestToken } from '@nextcloud/auth'
  6. import Vue from 'vue'
  7. import App from './AdminTheming.vue'
  8. // eslint-disable-next-line camelcase
  9. __webpack_nonce__ = btoa(getRequestToken())
  10. Vue.prototype.OC = OC
  11. Vue.prototype.t = t
  12. const View = Vue.extend(App)
  13. const theming = new View()
  14. theming.$mount('#admin-theming')