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

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

export default {
  [types.RECEIVE_CREATE_USER_LIST_ERROR](state, error) {
    state.errorMessage = error;
  },
  [types.DISMISS_ERROR_ALERT](state) {
    state.errorMessage = '';
  },
};