summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/store/mutation_types.js
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2018-09-07 17:13:11 +0200
committerTim Zallmann <tzallmann@gitlab.com>2018-09-07 17:13:11 +0200
commitd2cbe07398c3f824ffecbd78ff5749daca678d3e (patch)
tree80db47a1f53e1333b6252d14e314bb6a758f158e /app/assets/javascripts/diffs/store/mutation_types.js
parentd4d5ed59f98eb3218418c385327224d2512e518e (diff)
downloadgitlab-ce-d2cbe07398c3f824ffecbd78ff5749daca678d3e.tar.gz
Adapted so utils + actions don't include any mutations and mutations are always against state
Diffstat (limited to 'app/assets/javascripts/diffs/store/mutation_types.js')
-rw-r--r--app/assets/javascripts/diffs/store/mutation_types.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/diffs/store/mutation_types.js b/app/assets/javascripts/diffs/store/mutation_types.js
index 80f2807682a..f61efbe6e1e 100644
--- a/app/assets/javascripts/diffs/store/mutation_types.js
+++ b/app/assets/javascripts/diffs/store/mutation_types.js
@@ -9,5 +9,5 @@ export const ADD_CONTEXT_LINES = 'ADD_CONTEXT_LINES';
export const ADD_COLLAPSED_DIFFS = 'ADD_COLLAPSED_DIFFS';
export const EXPAND_ALL_FILES = 'EXPAND_ALL_FILES';
export const RENDER_FILE = 'RENDER_FILE';
-export const SET_LINE_DISCUSSIONS = 'SET_LINE_DISCUSSIONS';
-export const REMOVE_LINE_DISCUSSIONS = 'REMOVE_LINE_DISCUSSIONS';
+export const SET_LINE_DISCUSSIONS_FOR_FILE = 'SET_LINE_DISCUSSIONS_FOR_FILE';
+export const REMOVE_LINE_DISCUSSIONS_FOR_FILE = 'REMOVE_LINE_DISCUSSIONS_FOR_FILE';