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

state.js « pipelines « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8dfa0ec491f85da22722d0a47aab94ff0b977fa9 (plain)
1
2
3
4
5
6
7
8
export default () => ({
  isLoadingPipeline: true,
  hasLoadedPipeline: false,
  isLoadingJobs: false,
  latestPipeline: null,
  stages: [],
  detailJob: null,
});