summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_conflicts/merge_conflict_service.js
blob: c68b47c934820d48d00079927648cea032750cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* eslint-disable no-param-reassign, comma-dangle */
import axios from '../lib/utils/axios_utils';

((global) => {
  global.mergeConflicts = global.mergeConflicts || {};

  class mergeConflictsService {
    constructor(options) {
      this.conflictsPath = options.conflictsPath;
      this.resolveConflictsPath = options.resolveConflictsPath;
    }

    fetchConflictsData() {
      return axios.get(this.conflictsPath);
    }

    submitResolveConflicts(data) {
      return axios.post(this.resolveConflictsPath, data);
    }
  }

  global.mergeConflicts.mergeConflictsService = mergeConflictsService;
})(window.gl || (window.gl = {}));