2020-07-24 11:09:39 -04:00
|
|
|
import { inactiveId } from '~/boards/constants';
|
2020-05-12 05:09:31 -04:00
|
|
|
|
2019-05-20 07:05:26 -04:00
|
|
|
export default () => ({
|
2020-06-04 05:08:01 -04:00
|
|
|
endpoints: {},
|
2020-08-13 05:10:09 -04:00
|
|
|
boardType: null,
|
2020-08-24 08:10:17 -04:00
|
|
|
disabled: false,
|
|
|
|
showPromotion: false,
|
2019-10-28 11:05:58 -04:00
|
|
|
isShowingLabels: true,
|
2020-07-24 11:09:39 -04:00
|
|
|
activeId: inactiveId,
|
2020-08-25 02:10:18 -04:00
|
|
|
sidebarType: '',
|
2020-08-24 02:10:15 -04:00
|
|
|
boardLists: [],
|
2020-10-08 11:08:17 -04:00
|
|
|
listsFlags: {},
|
2020-08-13 05:10:09 -04:00
|
|
|
issuesByListId: {},
|
2020-10-08 11:08:17 -04:00
|
|
|
pageInfoByListId: {},
|
2020-09-02 14:10:40 -04:00
|
|
|
issues: {},
|
2020-08-24 05:10:14 -04:00
|
|
|
filterParams: {},
|
2020-08-24 02:10:15 -04:00
|
|
|
error: undefined,
|
|
|
|
// TODO: remove after ce/ee split of board_content.vue
|
|
|
|
isShowingEpicsSwimlanes: false,
|
2019-05-20 07:05:26 -04:00
|
|
|
});
|