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: 86ab50d8f1e9742196033a6365141bf68565ef0b (plain)
1
2
3
4
5
6
7
8
9
10
11
export default class PipelineStore {
  constructor() {
    this.state = {};

    this.state.graph = [];
  }

  storeGraph(graph = []) {
    this.state.graph = graph;
  }
}