summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/stores/pipeline_store.js
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;
  }
}