summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/user_lists/store/new/mutations.js
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 = '';
  },
};