| /openbmc/webui-vue/src/store/modules/SecurityAndAccess/ |
| H A D | CertificatesStore.js | 18 getters: { property in CertificatesStore 62 async getCertificates({ dispatch, getters, commit }) { 91 getters['certificateTypes'], 101 const availableUploadTypes = getters['certificateTypes'].filter( 114 async addNewCertificate({ dispatch, getters }, { file, type }) { 117 getCertificateProp(getters['certificateTypes'], type, 'location'), 127 getters['certificateTypes'], 141 { dispatch, getters }, 158 getters['certificateTypes'], 171 async deleteCertificate({ dispatch, getters }, { type, location }) { [all …]
|
| H A D | LdapStore.js | 28 getters: { property in LdapStore 35 enabledRoleGroups: (state, getters) => { 36 const serviceType = getters.isActiveDirectoryEnabled 186 { dispatch, getters }, 190 const enabledRoleGroups = getters['enabledRoleGroups']; 191 const isActiveDirectoryEnabled = getters['isActiveDirectoryEnabled']; 217 async saveRoleGroup({ dispatch, getters }, { groupName, groupPrivilege }) { 219 const enabledRoleGroups = getters['enabledRoleGroups']; 220 const isActiveDirectoryEnabled = getters['isActiveDirectoryEnabled']; 249 async deleteRoleGroup({ dispatch, getters }, { roleGroups = [] }) { [all …]
|
| /openbmc/webui-vue/src/router/ |
| H A D | index.js | 20 if (store.getters['authentication/isLoggedIn']) { 41 let currentUserRole = store.getters['global/userPrivilege']; 43 if (!currentUserRole && store.getters['authentication/isLoggedIn']) { 48 let currentUserRole = store.getters['global/userPrivilege'];
|
| /openbmc/webui-vue/docs/guide/quickstart/ |
| H A D | store-anatomy.md | 24 bloated. Each module contains its own state, mutations, actions, and getters. 32 [Learn more about getters.](https://vuex.vuejs.org/guide/getters.html) 71 // getters, actions, and mutations will be namespaced 77 getters: { 78 // namespace -> getters['featureNameStore/getExampleValue']
|
| /openbmc/webui-vue/src/views/Settings/Network/ |
| H A D | NetworkGlobalSettings.vue | 155 return this.$store.getters['network/globalNetworkSettings'][0]; 159 return this.$store.getters['network/globalNetworkSettings'][0] 168 return this.$store.getters['network/globalNetworkSettings'][0] 177 return this.$store.getters['network/globalNetworkSettings'][0] 186 return this.$store.getters['network/globalNetworkSettings'][0] 195 return this.$store.getters['network/globalNetworkSettings'][0] 204 return this.$store.getters['network/globalNetworkSettings'][0]
|
| /openbmc/webui-vue/src/ |
| H A D | App.vue | 19 //return this.$store.getters['global/assetTag']; 35 getters: {},
|
| /openbmc/webui-vue/src/views/Operations/Firmware/ |
| H A D | FirmwareModalUpdateFirmware.vue | 50 return this.$store.getters['firmware/activeBmcFirmware']; 56 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
|
| H A D | FirmwareCardsBios.vue | 53 return this.$store.getters['firmware/activeBiosFirmware']; 56 return this.$store.getters['firmware/backupBiosFirmware'];
|
| H A D | FirmwareCardsBmc.vue | 99 return this.$store.getters['firmware/isSingleFileUploadEnabled']; 108 return this.$store.getters['firmware/activeBmcFirmware']; 111 return this.$store.getters['firmware/backupBmcFirmware'];
|
| H A D | Firmware.vue | 74 return this.$store.getters['global/serverStatus']; 80 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
|
| /openbmc/webui-vue/src/components/AppHeader/ |
| H A D | AppHeader.vue | 150 return this.$store.getters['global/assetTag']; 153 return this.$store.getters['global/modelType']; 156 return this.$store.getters['global/serialNumber']; 159 return this.$store.getters['global/isAuthorized']; 162 return this.$store.getters['global/userPrivilege']; 165 return this.$store.getters['global/serverStatus']; 168 return this.$store.getters['eventLog/healthStatus']; 196 return this.$store.getters['global/username'];
|
| /openbmc/webui-vue/src/views/Overview/ |
| H A D | OverviewFirmware.vue | 40 return this.$store.getters['firmware/backupBmcFirmware']; 46 return this.$store.getters[`firmware/activeBmcFirmware`];
|
| /openbmc/webui-vue/src/store/modules/Operations/ |
| H A D | FirmwareStore.js | 15 getters: { property in FirmwareStore 170 async switchBmcFirmwareAndReboot({ getters }) { field in FirmwareStore.actions.AnonymousClass75824bbd1201 171 const backupLocation = getters.backupBmcFirmware.location;
|
| /openbmc/webui-vue/src/views/Operations/ServerPowerOperations/ |
| H A D | BootSettings.vue | 82 bootOption: this.$store.getters['serverBootSettings/bootSource'], 83 oneTimeBoot: this.$store.getters['serverBootSettings/overrideEnabled'], 84 tpmPolicyOn: this.$store.getters['serverBootSettings/tpmEnabled'],
|
| H A D | ServerPowerOperations.vue | 213 return this.$store.getters['global/serverStatus']; 216 return this.$store.getters['controls/isOperationInProgress']; 219 return this.$store.getters['controls/lastPowerOperationTime']; 222 return this.$store.getters['serverBootSettings/overrideEnabled']; 226 this.$store.getters['serverBootSettings/bootSourceOptions'];
|
| /openbmc/webui-vue/src/views/HardwareStatus/Inventory/ |
| H A D | InventoryServiceIndicator.vue | 52 let systemData = this.$store.getters['system/systems'][0]; 56 return this.$store.getters['global/serverStatus'];
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/Policies/ |
| H A D | Policies.vue | 185 return this.$store.getters['policies/sshProtocolEnabled']; 193 return this.$store.getters['policies/ipmiProtocolEnabled']; 201 if (this.$store.getters['policies/rtadEnabled'] === 'Enabled') { 213 if (this.$store.getters['policies/vtpmEnabled'] === 'Enabled') { 225 return this.$store.getters['policies/getSessionTimeoutValue'];
|
| /openbmc/webui-vue/src/views/Settings/PowerRestorePolicy/ |
| H A D | PowerRestorePolicy.vue | 54 return this.$store.getters['powerPolicy/powerRestorePolicies']; 58 return this.$store.getters['powerPolicy/powerRestoreCurrentPolicy'];
|
| /openbmc/webui-vue/src/views/ProfileSettings/ |
| H A D | ProfileSettings.vue | 192 isUtcDisplay: this.$store.getters['global/isUtcDisplay'], 198 return this.$store.getters['global/username']; 201 return this.$store.getters['userManagement/accountPasswordRequirements']; 264 this.$store.getters['global/isUtcDisplay'] != this.form.isUtcDisplay
|
| /openbmc/webui-vue/src/store/modules/HardwareStatus/ |
| H A D | ServerLedStore.js | 9 getters: { property in ServerLedStore
|
| /openbmc/webui-vue/src/views/Settings/DateTime/ |
| H A D | DateTime.vue | 223 locale: this.$store.getters['global/languagePreference'], 265 return this.$store.getters['global/bmcTime']; 274 return this.$store.getters['global/isUtcDisplay']; 292 this.$store.getters['global/bmcTime'], 295 .formatTime(this.$store.getters['global/bmcTime']) 334 const isUtcDisplay = this.$store.getters['global/isUtcDisplay'];
|
| /openbmc/webui-vue/src/store/modules/Logs/ |
| H A D | PostCodeLogsStore.js | 9 getters: { property in PostCodeLogsStore
|
| /openbmc/webui-vue/src/views/Operations/VirtualMedia/ |
| H A D | VirtualMedia.vue | 131 return this.$store.getters['virtualMedia/proxyDevices']; 134 return this.$store.getters['virtualMedia/legacyDevices']; 147 const token = this.$store.getters['authentication/token'];
|
| /openbmc/webui-vue/src/components/Mixins/ |
| H A D | TableFilterMixin.js | 39 const isUtcDisplay = this.$store.getters['global/isUtcDisplay'];
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/ |
| H A D | UserManagement.vue | 226 return this.$store.getters['userManagement/allUsers']; 248 user.UserName === this.$store.getters['global/username'] 261 return this.$store.getters['userManagement/accountSettings']; 264 return this.$store.getters['userManagement/accountPasswordRequirements']; 278 if ('root' === this.$store.getters['global/username']) {
|