debian-mirror-gitlab/app/assets/javascripts/boards/stores/state.js

20 lines
436 B
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
import { inactiveId } from '~/boards/constants';
2020-05-24 23:13:21 +05:30
2019-09-04 21:01:54 +05:30
export default () => ({
2020-06-23 00:09:42 +05:30
endpoints: {},
2020-10-24 23:57:45 +05:30
boardType: null,
2020-11-24 15:15:51 +05:30
disabled: false,
showPromotion: false,
2019-12-26 22:10:19 +05:30
isShowingLabels: true,
2020-10-24 23:57:45 +05:30
activeId: inactiveId,
2020-11-24 15:15:51 +05:30
sidebarType: '',
boardLists: [],
2020-10-24 23:57:45 +05:30
issuesByListId: {},
2020-11-24 15:15:51 +05:30
issues: {},
2020-10-24 23:57:45 +05:30
isLoadingIssues: false,
2020-11-24 15:15:51 +05:30
filterParams: {},
error: undefined,
// TODO: remove after ce/ee split of board_content.vue
isShowingEpicsSwimlanes: false,
2019-09-04 21:01:54 +05:30
});