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.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/store/index.js b/src/store/index.js
index 2afadd02..608a0270 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -3,10 +3,10 @@ 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';
+import SessionsStore from './modules/SecurityAndAccess/SessionsStore';
+import LdapStore from './modules/SecurityAndAccess/LdapStore';
+import UserManagementStore from './modules/SecurityAndAccess/UserManagementStore';
+import CertificatesStore from './modules/SecurityAndAccess/CertificatesStore';
import FirmwareStore from './modules/Operations/FirmwareStore';
import BootSettingsStore from './modules/Operations/BootSettingsStore';
import ControlStore from './modules/Operations/ControlStore';
@@ -24,7 +24,7 @@ import ChassisStore from './modules/HardwareStatus/ChassisStore';
import BmcStore from './modules/HardwareStatus/BmcStore';
import ProcessorStore from './modules/HardwareStatus/ProcessorStore';
import PostCodeLogsStore from './modules/Logs/PostCodeLogsStore';
-import SecuritySettingsStore from './modules/Settings/SecuritySettingsStore';
+import PoliciesStore from './modules/SecurityAndAccess/PoliciesStore';
import FactoryResetStore from './modules/Operations/FactoryResetStore';
import WebSocketPlugin from './plugins/WebSocketPlugin';
@@ -40,10 +40,10 @@ export default new Vuex.Store({
modules: {
global: GlobalStore,
authentication: AuthenticationStore,
- clientSessions: ClientSessions,
+ sessions: SessionsStore,
dateTime: DateTimeStore,
ldap: LdapStore,
- localUsers: LocalUserManagementStore,
+ userManagement: UserManagementStore,
firmware: FirmwareStore,
serverBootSettings: BootSettingsStore,
controls: ControlStore,
@@ -53,8 +53,8 @@ export default new Vuex.Store({
network: NetworkStore,
eventLog: EventLogStore,
sensors: SensorsStore,
- sslCertificates: SslCertificatesStore,
serverLed: ServerLedStore,
+ certificates: CertificatesStore,
system: SystemStore,
memory: MemoryStore,
fan: FanStore,
@@ -63,7 +63,7 @@ export default new Vuex.Store({
processors: ProcessorStore,
postCodeLogs: PostCodeLogsStore,
virtualMedia: VirtualMediaStore,
- securitySettings: SecuritySettingsStore,
+ policies: PoliciesStore,
factoryReset: FactoryResetStore,
},
plugins: [WebSocketPlugin],