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

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

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

})(window.gl || (window.gl = {}));