summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/tree/services/commit_pipeline_service.js
blob: 4b4189bc2de2227ee38ed3741faa7d2133036932 (plain)
1
2
3
4
5
6
7
8
9
10
11
import axios from '~/lib/utils/axios_utils';

export default class CommitPipelineService {
  constructor(endpoint) {
    this.endpoint = endpoint;
  }

  fetchData() {
    return axios.get(this.endpoint);
  }
}