debian-mirror-gitlab/app/assets/javascripts/boards/stores/state.js
2021-02-22 17:27:13 +05:30

21 lines
476 B
JavaScript

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