20 lines
452 B
JavaScript
20 lines
452 B
JavaScript
import { inactiveId } from '~/boards/constants';
|
|
|
|
export default () => ({
|
|
endpoints: {},
|
|
boardType: null,
|
|
disabled: false,
|
|
showPromotion: false,
|
|
isShowingLabels: true,
|
|
activeId: inactiveId,
|
|
sidebarType: '',
|
|
boardLists: {},
|
|
listsFlags: {},
|
|
issuesByListId: {},
|
|
pageInfoByListId: {},
|
|
issues: {},
|
|
filterParams: {},
|
|
error: undefined,
|
|
// TODO: remove after ce/ee split of board_content.vue
|
|
isShowingEpicsSwimlanes: false,
|
|
});
|