Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.js « stores « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb6930774ed582c2a035e185a46467c26721e488 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { inactiveId } from '~/boards/constants';

export default () => ({
  endpoints: {},
  boardType: null,
  isShowingLabels: true,
  activeId: inactiveId,
  issuesByListId: {},
  isLoadingIssues: false,
  listIssueFetchFailure: false,
});