feat: authentication improvements

This commit is contained in:
NGPixel
2018-08-04 17:27:55 -04:00
committed by Nicolas Giard
parent 2817c72ec3
commit bcd6ceb271
39 changed files with 393 additions and 169 deletions
+15
View File
@@ -0,0 +1,15 @@
import { make } from 'vuex-pathify'
/* global siteConfig */
const state = {
company: '',
mascot: true,
title: siteConfig.title
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}