Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mutations.js « store « eks_cluster « create_cluster « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 346716bb0df789b9ae6752418c6473aa1132690a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as types from './mutation_types';

export default {
  [types.SET_REGION](state, { region }) {
    state.selectedRegion = region;
  },
  [types.SET_VPC](state, { vpc }) {
    state.selectedVpc = vpc;
  },
  [types.SET_SUBNET](state, { subnet }) {
    state.selectedSubnet = subnet;
  },
};