2018-07-15 19:16:19 -04:00
|
|
|
import { make } from 'vuex-pathify'
|
|
|
|
|
|
|
|
const state = {
|
2018-12-15 17:15:13 -05:00
|
|
|
info: {
|
|
|
|
currentVersion: 'n/a',
|
|
|
|
latestVersion: 'n/a',
|
|
|
|
groupsTotal: 0,
|
|
|
|
pagesTotal: 0,
|
|
|
|
usersTotal: 0
|
2018-07-15 19:16:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-09 20:11:00 -04:00
|
|
|
export default {
|
|
|
|
namespaced: true,
|
2018-07-15 19:16:19 -04:00
|
|
|
state,
|
|
|
|
mutations: make.mutations(state)
|
2018-06-09 20:11:00 -04:00
|
|
|
}
|