summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/index.js')
-rw-r--r--src/store/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/store/index.js b/src/store/index.js
index b4a77d82..151eb68c 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -3,6 +3,7 @@ import Vuex from 'vuex';
import GlobalStore from './modules/GlobalStore';
import AuthenticationStore from './modules/Authentication/AuthenticanStore';
+import ClientSessions from './modules/AccessControl/ClientSessionsStore';
import LdapStore from './modules/AccessControl/LdapStore';
import LocalUserManagementStore from './modules/AccessControl/LocalUserMangementStore';
import SslCertificatesStore from './modules/AccessControl/SslCertificatesStore';
@@ -36,6 +37,7 @@ export default new Vuex.Store({
modules: {
global: GlobalStore,
authentication: AuthenticationStore,
+ clientSessions: ClientSessions,
dateTime: DateTimeStore,
ldap: LdapStore,
localUsers: LocalUserManagementStore,