From b440616c23b61166ae6d87839a70eec31bdca235 Mon Sep 17 00:00:00 2001 From: Sandeepa Singh Date: Mon, 26 Jul 2021 15:05:39 +0530 Subject: IA update: Update access and control section This is the fifth commit of the information architecture changes and has the following changes: - The icon for access and control has been updated - Access and control section has been updated to security and access section - Security settings page has been updated to policies page and moved to security and access section - Client sessions page has been updated to sessions page - Local user management page has been updated to user management page - SSL certificates page has been updated to certificates page Signed-off-by: Sandeepa Singh Change-Id: Ie93cee9002742ecf7d33615636f4f159f4395fc4 --- src/store/index.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/store/index.js') 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], -- cgit v1.2.3