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.
66 lines
957 B
JavaScript
66 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();
|
|
},
|
|
};
|