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

pipeline_store.js « stores « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 052e34a8aef8a94f409e83fef874dcd17eac9f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
export default class PipelineStore {
  constructor() {
    this.state = {};

    this.state.pipeline = {};
  }

  storePipeline(pipeline = {}) {
    this.state.pipeline = pipeline;
  }
}