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

state.js « detail « 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: a19e8d044e237862ecb7fc581913d20cfbd8ba6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export default ({
  projectId,
  tagName,
  releasesPagePath,
  markdownDocsPath,
  markdownPreviewPath,
  updateReleaseApiDocsPath,
}) => ({
  projectId,
  tagName,
  releasesPagePath,
  markdownDocsPath,
  markdownPreviewPath,
  updateReleaseApiDocsPath,

  release: null,

  isFetchingRelease: false,
  fetchError: null,

  isUpdatingRelease: false,
  updateError: null,
});