summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/commit/store/mutations.js
blob: 6add00deadb214f53c89c4098c79d9a9dbd82383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as types from './mutation_types';

export default {
  [types.REQUEST_BRANCHES](state) {
    state.isFetching = true;
  },

  [types.RECEIVE_BRANCHES_SUCCESS](state, branches) {
    state.isFetching = false;
    state.branches = branches;
    state.branches.unshift(state.branch);
  },

  [types.CLEAR_MODAL](state) {
    state.branch = state.defaultBranch;
  },

  [types.SET_BRANCH](state, branch) {
    state.branch = branch;
  },

  [types.SET_SELECTED_BRANCH](state, branch) {
    state.selectedBranch = branch;
  },
};