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

state.js « list « modules « stores « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fe313745fc7578dad918b49e02c8250e5e3c24a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export default ({
  projectId,
  projectPath,
  documentationPath,
  illustrationPath,
  newReleasePath = '',
}) => ({
  projectId,
  projectPath,
  documentationPath,
  illustrationPath,
  newReleasePath,

  isLoading: false,
  hasError: false,
  releases: [],
  pageInfo: {},
});