67 lines
957 B
JavaScript
67 lines
957 B
JavaScript
|
const notImplemented = () => {
|
||
|
/* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
|
||
|
throw new Error('Not implemented!');
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
setEndpoints: () => {
|
||
|
notImplemented();
|
||
|
},
|
||
|
|
||
|
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();
|
||
|
},
|
||
|
};
|