Home
last modified time | relevance | path

Searched refs:getters (Results 1 – 25 of 95) sorted by relevance

1234

/openbmc/webui-vue/src/store/modules/SecurityAndAccess/
H A DCertificatesStore.js18 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 DLdapStore.js28 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'];
247 async deleteRoleGroup({ dispatch, getters }, { roleGroups = [] }) {
[all …]
/openbmc/webui-vue/src/router/
H A Dindex.js20 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 Dstore-anatomy.md24 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 DNetworkGlobalSettings.vue152 return this.$store.getters['network/globalNetworkSettings'][0];
156 return this.$store.getters['network/globalNetworkSettings'][0]
165 return this.$store.getters['network/globalNetworkSettings'][0]
174 return this.$store.getters['network/globalNetworkSettings'][0]
183 return this.$store.getters['network/globalNetworkSettings'][0]
192 return this.$store.getters['network/globalNetworkSettings'][0]
201 return this.$store.getters['network/globalNetworkSettings'][0]
H A DNetwork.vue141 this.$store.getters['network/globalNetworkSettings'][
146 this.$store.getters['network/globalNetworkSettings'][
151 this.$store.getters['network/globalNetworkSettings'][
155 this.$store.getters['network/globalNetworkSettings'][
/openbmc/webui-vue/src/components/AppHeader/
H A DAppHeader.vue153 return this.$store.getters['global/assetTag'];
156 return this.$store.getters['global/modelType'];
159 return this.$store.getters['global/serialNumber'];
162 return this.$store.getters['global/isAuthorized'];
165 return this.$store.getters['global/userPrivilege'];
168 return this.$store.getters['global/serverStatus'];
171 return this.$store.getters['eventLog/healthStatus'];
199 return this.$store.getters['global/username'];
/openbmc/webui-vue/src/
H A DApp.vue13 //return this.$store.getters['global/assetTag'];
29 getters: {},
H A Dmain.js117 const isUtcDisplay = store.getters['global/isUtcDisplay'];
129 const isUtcDisplay = store.getters['global/isUtcDisplay'];
/openbmc/webui-vue/src/views/Operations/Firmware/
H A DFirmwareModalUpdateFirmware.vue40 return this.$store.getters['firmware/activeBmcFirmware'];
46 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
H A DFirmwareCardsBmc.vue89 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
98 return this.$store.getters['firmware/activeBmcFirmware'];
101 return this.$store.getters['firmware/backupBmcFirmware'];
H A DFirmwareCardsBios.vue52 return this.$store.getters['firmware/activeBiosFirmware'];
55 return this.$store.getters['firmware/backupBiosFirmware'];
H A DFirmware.vue76 return this.$store.getters['global/serverStatus'];
82 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
/openbmc/webui-vue/src/store/modules/Operations/
H A DFirmwareStore.js15 getters: { property in FirmwareStore
165 async switchBmcFirmwareAndReboot({ getters }) { field in FirmwareStore.actions.AnonymousClass75824bbd1201
166 const backupLocation = getters.backupBmcFirmware.location;
/openbmc/webui-vue/src/views/Overview/
H A DOverviewFirmware.vue46 return this.$store.getters['firmware/backupBmcFirmware'];
52 return this.$store.getters[`firmware/activeBmcFirmware`];
/openbmc/webui-vue/src/views/SecurityAndAccess/Policies/
H A DPolicies.vue169 return this.$store.getters['policies/sshProtocolEnabled'];
177 return this.$store.getters['policies/ipmiProtocolEnabled'];
185 if (this.$store.getters['policies/rtadEnabled'] === 'Enabled') {
197 if (this.$store.getters['policies/vtpmEnabled'] === 'Enabled') {
209 return this.$store.getters['policies/getSessionTimeoutValue'];
/openbmc/webui-vue/src/views/Operations/ServerPowerOperations/
H A DServerPowerOperations.vue198 return this.$store.getters['global/serverStatus'];
201 return this.$store.getters['controls/isOperationInProgress'];
204 return this.$store.getters['controls/lastPowerOperationTime'];
207 return this.$store.getters['serverBootSettings/overrideEnabled'];
211 this.$store.getters['serverBootSettings/bootSourceOptions'];
H A DBootSettings.vue71 bootOption: this.$store.getters['serverBootSettings/bootSource'],
72 oneTimeBoot: this.$store.getters['serverBootSettings/overrideEnabled'],
73 tpmPolicyOn: this.$store.getters['serverBootSettings/tpmEnabled'],
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventoryServiceIndicator.vue55 let systemData = this.$store.getters['system/systems'][0];
59 return this.$store.getters['global/serverStatus'];
/openbmc/webui-vue/src/views/ProfileSettings/
H A DProfileSettings.vue181 isUtcDisplay: this.$store.getters['global/isUtcDisplay'],
187 return this.$store.getters['global/username'];
190 return this.$store.getters['userManagement/accountPasswordRequirements'];
253 this.$store.getters['global/isUtcDisplay'] != this.form.isUtcDisplay
/openbmc/webui-vue/src/views/Settings/PowerRestorePolicy/
H A DPowerRestorePolicy.vue56 return this.$store.getters['powerPolicy/powerRestorePolicies'];
60 return this.$store.getters['powerPolicy/powerRestoreCurrentPolicy'];
/openbmc/webui-vue/src/views/Settings/DateTime/
H A DDateTime.vue240 locale: this.$store.getters['global/languagePreference'],
282 return this.$store.getters['global/bmcTime'];
291 return this.$store.getters['global/isUtcDisplay'];
309 this.$store.getters['global/bmcTime'],
312 .formatTime(this.$store.getters['global/bmcTime'])
351 const isUtcDisplay = this.$store.getters['global/isUtcDisplay'];
/openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/
H A DUserManagement.vue208 return this.$store.getters['userManagement/allUsers'];
230 user.UserName === this.$store.getters['global/username']
243 return this.$store.getters['userManagement/accountSettings'];
246 return this.$store.getters['userManagement/accountPasswordRequirements'];
260 if ('root' === this.$store.getters['global/username']) {
/openbmc/webui-vue/src/views/Operations/VirtualMedia/
H A DVirtualMedia.vue126 return this.$store.getters['virtualMedia/proxyDevices'];
129 return this.$store.getters['virtualMedia/legacyDevices'];
142 const token = this.$store.getters['authentication/token'];
/openbmc/webui-vue/src/store/modules/HardwareStatus/
H A DServerLedStore.js9 getters: { property in ServerLedStore

1234