summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/commit/mutation_types.js
diff options
context:
space:
mode:
authorSam Bigelow <sbigelow@gitlab.com>2019-06-03 17:00:31 -0400
committerSam Bigelow <sbigelow@gitlab.com>2019-06-06 00:12:21 -0400
commitbf8ab1243356e5732ce1a07ea5fb3ea98549635d (patch)
tree4c8db8b586182f9e2efc5d69d191b2d55caadb63 /app/assets/javascripts/ide/stores/modules/commit/mutation_types.js
parent55920e074c2352e41394eca63d5b7fb03284e352 (diff)
downloadgitlab-ce-bf8ab1243356e5732ce1a07ea5fb3ea98549635d.tar.gz
Default MR checkbox to true in most cases60034-default-web-ide-s-merge-request-checkbox-to-true
- Pull the new MR option out into it's own component - Default MR checkbox to true when creating a new MR and committing to a branch that does not have an MR - Still change the MR checkbox to false when a user is on a branch that already has an MR - Hide MR option when on a branch that already has an MR and committing to current branch - Don't default to true when committing directly to master
Diffstat (limited to 'app/assets/javascripts/ide/stores/modules/commit/mutation_types.js')
-rw-r--r--app/assets/javascripts/ide/stores/modules/commit/mutation_types.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/ide/stores/modules/commit/mutation_types.js b/app/assets/javascripts/ide/stores/modules/commit/mutation_types.js
index 7ad8f3570b7..b81918156b0 100644
--- a/app/assets/javascripts/ide/stores/modules/commit/mutation_types.js
+++ b/app/assets/javascripts/ide/stores/modules/commit/mutation_types.js
@@ -3,3 +3,4 @@ export const UPDATE_COMMIT_ACTION = 'UPDATE_COMMIT_ACTION';
export const UPDATE_NEW_BRANCH_NAME = 'UPDATE_NEW_BRANCH_NAME';
export const UPDATE_LOADING = 'UPDATE_LOADING';
export const TOGGLE_SHOULD_CREATE_MR = 'TOGGLE_SHOULD_CREATE_MR';
+export const INTERACT_WITH_NEW_MR = 'INTERACT_WITH_NEW_MR';