2020-06-23 00:09:42 +05:30
|
|
|
import * as types from './mutation_types';
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
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 {
|
2020-06-23 00:09:42 +05:30
|
|
|
setEndpoints: ({ commit }, endpoints) => {
|
|
|
|
commit(types.SET_ENDPOINTS, endpoints);
|
2019-09-04 21:01:54 +05:30
|
|
|
},
|
|
|
|
|
|
|
|
fetchLists: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
generateDefaultLists: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
createList: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
updateList: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteList: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchIssuesForList: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
moveIssue: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
createNewIssue: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchBacklog: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
bulkUpdateIssues: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchIssue: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleIssueSubscription: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
showPage: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleEmptyState: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
};
|