summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_conflicts/mixins/line_conflict_actions.js.es6
blob: 53e000d7e9ecccdc5471f387bad6c72072c112c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable no-param-reassign, comma-dangle */

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

  global.mergeConflicts.actions = {
    methods: {
      handleSelected(file, sectionId, selection) {
        gl.mergeConflicts.mergeConflictsStore.handleSelected(file, sectionId, selection);
      }
    }
  };
})(window.gl || (window.gl = {}));