Lines Matching full:commit

79     async getEthernetData({ commit }) {  field in NetworkStore.actions.AnonymousClass181065170201
100 commit('setEthernetData', ethernetData);
101 commit('setFirstInterfaceId', firstInterfaceId);
102 commit('setSelectedInterfaceId', firstInterfaceId);
103 commit('setGlobalNetworkSettings', ethernetInterfaces);
161 async saveDomainNameState({ commit, state }, { domainState, ipVersion }) { field in NetworkStore.actions.AnonymousClass181065170901
164 commit('setDomainNameState', domainState);
171 commit('setDomainNameStateIpv6', domainState);
192 if (ipVersion === 'IPv4') commit('setDomainNameState', !domainState);
194 commit('setDomainNameStateIpv6', !domainState);
202 async saveDnsState({ commit, state }, { dnsState, ipVersion }) { field in NetworkStore.actions.AnonymousClass181065170d01
205 commit('setDnsState', dnsState);
212 commit('setDnsStateIpv6', dnsState);
233 if (ipVersion === 'IPv4') commit('setDnsState', !dnsState);
234 else if (ipVersion === 'IPv6') commit('setDnsStateIpv6', !dnsState);
242 async saveNtpState({ commit, state }, { ntpState, ipVersion }) { field in NetworkStore.actions.AnonymousClass181065171101
245 commit('setNtpState', ntpState);
252 commit('setNtpStateIpv6', ntpState);
273 if (ipVersion === 'IPv4') commit('setNtpState', !ntpState);
274 else if (ipVersion === 'IPv6') commit('setNtpStateIpv6', !ntpState);
282 async setSelectedTabIndex({ commit }, tabIndex) { field in NetworkStore.actions.AnonymousClass181065171501
283 commit('setSelectedInterfaceIndex', tabIndex);
285 async setSelectedTabId({ commit }, tabId) { field in NetworkStore.actions.AnonymousClass181065171601
286 commit('setSelectedInterfaceId', tabId);