summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authorRubén Dávila <rdavila84@gmail.com>2016-02-12 10:08:42 -0500
committerRobert Speicher <rspeicher@gmail.com>2016-02-19 13:14:53 -0500
commit02f48053f1328055bef548bf2627e8f71c919a11 (patch)
treec6a04cea3fce16b7caf4eee4d9ad8bb4af7b4840 /app/helpers
parentf088caca3b3f90829735c23d061fd55230d1be3e (diff)
downloadgitlab-ce-02f48053f1328055bef548bf2627e8f71c919a11.tar.gz
No longer need to ignore temporary branch.
* Now it's only created when user choose to create a MR and logic to hide it is handled by https://gitlab.com/gitlab-org/gitlab-ce/blob/50595af7b0e304f16e2955109abd2d25cd96efda/app/helpers/application_helper.rb#L139
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/application_helper.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 44a62143cf7..f0aa2b57121 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -135,8 +135,6 @@ module ApplicationHelper
# Skip if user removed branch right after that
return false unless project.repository.branch_names.include?(event.branch_name)
- return false if event.branch_name =~ Gitlab::Git::REVERT_BRANCH_PATTERN
-
true
end