c009cc1392
* feat: multiple auth instances * fix: auth setup + strategy initialization * feat: admin auth - add strategy * feat: redirect on login - group setting * feat: oauth2 generic - props definitions * feat: new login UI (wip) * feat: new login UI (wip) * feat: admin security login settings * feat: tabset editor indicators + print view improvements * fix: code styling
25 lines
488 B
JavaScript
25 lines
488 B
JavaScript
import { make } from 'vuex-pathify'
|
|
|
|
/* global siteConfig */
|
|
|
|
const state = {
|
|
company: siteConfig.company,
|
|
contentLicense: siteConfig.contentLicense,
|
|
dark: siteConfig.darkMode,
|
|
mascot: true,
|
|
title: siteConfig.title,
|
|
logoUrl: siteConfig.logoUrl,
|
|
search: '',
|
|
searchIsFocused: false,
|
|
searchIsLoading: false,
|
|
searchRestrictLocale: false,
|
|
searchRestrictPath: false,
|
|
printView: false
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
mutations: make.mutations(state)
|
|
}
|