24 lines
574 B
JavaScript
24 lines
574 B
JavaScript
import { loadState } from '@nextcloud/initial-state'
|
|
import Vue from 'vue'
|
|
|
|
import AdminTwoFactor from './components/AdminTwoFactor.vue'
|
|
import store from './store/admin-security'
|
|
|
|
// eslint-disable-next-line camelcase
|
|
__webpack_nonce__ = btoa(OC.requestToken)
|
|
|
|
Vue.prototype.t = t
|
|
|
|
// Not used here but required for legacy templates
|
|
window.OC = window.OC || {}
|
|
window.OC.Settings = window.OC.Settings || {}
|
|
|
|
store.replaceState(
|
|
loadState('settings', 'mandatory2FAState')
|
|
)
|
|
|
|
const View = Vue.extend(AdminTwoFactor)
|
|
new View({
|
|
store,
|
|
}).$mount('#two-factor-auth-settings')
|