3d8163dcf6
Unnecessary offences include false positives as well as flagged errors which have follow up issues in order to be addressed. Not all issues have been addressed before this being submitted in the spirit of results and iteration.
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/i18n/no-non-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();
|
|
},
|
|
};
|