92 lines
1.8 KiB
JavaScript
92 lines
1.8 KiB
JavaScript
import * as mutationTypes from './mutation_types';
|
|
|
|
const notImplemented = () => {
|
|
/* eslint-disable-next-line @gitlab/require-i18n-strings */
|
|
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();
|
|
},
|
|
};
|