admin.js 263 Bytes
Newer Older
NGPixel's avatar
NGPixel committed
1 2 3
import { make } from 'vuex-pathify'

const state = {
4 5 6 7 8 9
  info: {
    currentVersion: 'n/a',
    latestVersion: 'n/a',
    groupsTotal: 0,
    pagesTotal: 0,
    usersTotal: 0
NGPixel's avatar
NGPixel committed
10 11 12
  }
}

NGPixel's avatar
NGPixel committed
13 14
export default {
  namespaced: true,
NGPixel's avatar
NGPixel committed
15 16
  state,
  mutations: make.mutations(state)
NGPixel's avatar
NGPixel committed
17
}