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

state.js « store « detail « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e3d975f1aea5d4f4af0090aa3735631383b2329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default () => ({
  projectId: null,
  tagName: null,
  releasesPagePath: null,
  markdownDocsPath: null,
  markdownPreviewPath: null,
  updateReleaseApiDocsPath: null,

  release: null,

  isFetchingRelease: false,
  fetchError: null,

  isUpdatingRelease: false,
  updateError: null,
});