summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/stores/state.js
blob: cf01e4fa0e35372d64531f4cfc1cadb646025b95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { inactiveId } from '~/boards/constants';

export default () => ({
  endpoints: {},
  boardType: null,
  isShowingLabels: true,
  activeId: inactiveId,
  boardLists: [],
  issuesByListId: {},
  isLoadingIssues: false,
  filterParams: {},
  error: undefined,
  // TODO: remove after ce/ee split of board_content.vue
  isShowingEpicsSwimlanes: false,
});