This commit is contained in:
@@ -17,6 +17,7 @@ export default new Vuex.Store({
|
||||
userId: 0,
|
||||
userName: "NOT AUTHENTICATED",
|
||||
roles: 0,
|
||||
homePage: undefined,
|
||||
localeText: {},
|
||||
locale: {
|
||||
decimalSeparator: ".",
|
||||
@@ -47,6 +48,7 @@ export default new Vuex.Store({
|
||||
state.userId = 0;
|
||||
state.userName = "NOT AUTHENTICATED";
|
||||
state.roles = 0;
|
||||
state.homePage = undefined;
|
||||
state.navItems = [];
|
||||
state.localeText = {};
|
||||
state.formCustomTemplate = {};
|
||||
@@ -102,6 +104,9 @@ export default new Vuex.Store({
|
||||
},
|
||||
clearFormSettings(state, formKey) {
|
||||
delete state.formSettings[formKey];
|
||||
},
|
||||
setHomePage(state, data) {
|
||||
state.homePage = data;
|
||||
}
|
||||
},
|
||||
actions: {}
|
||||
|
||||
Reference in New Issue
Block a user