gitlab-org--gitlab-foss/app/assets/javascripts/boards/stores/state.js

21 lines
452 B
JavaScript
Raw Normal View History

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,
});