2019-09-04 21:01:54 +05:30
|
|
|
import * as mutationTypes from './mutation_types';
|
|
|
|
|
|
|
|
const notImplemented = () => {
|
2020-04-22 19:07:51 +05:30
|
|
|
/* eslint-disable-next-line @gitlab/require-i18n-strings */
|
2019-09-04 21:01:54 +05:30
|
|
|
throw new Error('Not implemented!');
|
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
[mutationTypes.SET_ENDPOINTS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_ADD_LIST]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_LIST_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_LIST_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_UPDATE_LIST]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_LIST_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_LIST_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_REMOVE_LIST]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_REMOVE_LIST_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_REMOVE_LIST_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_ADD_ISSUE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_ISSUE_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_ISSUE_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_MOVE_ISSUE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_MOVE_ISSUE_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_MOVE_ISSUE_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_UPDATE_ISSUE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_ISSUE_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_ISSUE_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.SET_CURRENT_PAGE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.TOGGLE_EMPTY_STATE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
};
|