Home
last modified time | relevance | path

Searched refs:getters (Results 1 – 25 of 97) 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'];
249 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.vue155 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 DApp.vue19 //return this.$store.getters['global/assetTag'];
35 getters: {},
/openbmc/webui-vue/src/views/Operations/Firmware/
H A DFirmwareModalUpdateFirmware.vue50 return this.$store.getters['firmware/activeBmcFirmware'];
56 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
H A DFirmwareCardsBios.vue53 return this.$store.getters['firmware/activeBiosFirmware'];
56 return this.$store.getters['firmware/backupBiosFirmware'];
H A DFirmwareCardsBmc.vue99 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
108 return this.$store.getters['firmware/activeBmcFirmware'];
111 return this.$store.getters['firmware/backupBmcFirmware'];
H A DFirmware.vue74 return this.$store.getters['global/serverStatus'];
80 return this.$store.getters['firmware/isSingleFileUploadEnabled'];
/openbmc/webui-vue/src/components/AppHeader/
H A DAppHeader.vue150 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 DOverviewFirmware.vue40 return this.$store.getters['firmware/backupBmcFirmware'];
46 return this.$store.getters[`firmware/activeBmcFirmware`];
/openbmc/webui-vue/src/store/modules/Operations/
H A DFirmwareStore.js15 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 DBootSettings.vue82 bootOption: this.$store.getters['serverBootSettings/bootSource'],
83 oneTimeBoot: this.$store.getters['serverBootSettings/overrideEnabled'],
84 tpmPolicyOn: this.$store.getters['serverBootSettings/tpmEnabled'],
H A DServerPowerOperations.vue213 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 DInventoryServiceIndicator.vue52 let systemData = this.$store.getters['system/systems'][0];
56 return this.$store.getters['global/serverStatus'];
/openbmc/webui-vue/src/views/SecurityAndAccess/Policies/
H A DPolicies.vue185 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 DPowerRestorePolicy.vue54 return this.$store.getters['powerPolicy/powerRestorePolicies'];
58 return this.$store.getters['powerPolicy/powerRestoreCurrentPolicy'];
/openbmc/webui-vue/src/views/ProfileSettings/
H A DProfileSettings.vue192 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 DServerLedStore.js9 getters: { property in ServerLedStore
/openbmc/webui-vue/src/views/Settings/DateTime/
H A DDateTime.vue223 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 DPostCodeLogsStore.js9 getters: { property in PostCodeLogsStore
/openbmc/webui-vue/src/views/Operations/VirtualMedia/
H A DVirtualMedia.vue131 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 DTableFilterMixin.js39 const isUtcDisplay = this.$store.getters['global/isUtcDisplay'];
/openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/
H A DUserManagement.vue226 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']) {

1234