Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIzaak Alpert <ialpert@blackberry.com>2013-07-17 18:35:11 +0400
committerIzaak Alpert <ialpert@blackberry.com>2013-07-18 06:48:03 +0400
commit539c70c7d64589656cce804282725b97e28e49ff (patch)
treec181018c64097323006b2d303b810fdb99035997 /app/mailers/emails/merge_requests.rb
parentd99594273d57b2d5ed7c748b3185712960b89478 (diff)
Update emails to describe path using for_fork?
Forked MR's will print Project:Branch <source_project_with_path>:<source_branch> -> <target_project_with_path>:<target_branch> Non forked MR's will print Branch <source_branch> -> <target_branch> Change-Id: I89399aec2e7fde8e4b64b110a48099a95ae4f038
Diffstat (limited to 'app/mailers/emails/merge_requests.rb')
-rw-r--r--app/mailers/emails/merge_requests.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mailers/emails/merge_requests.rb b/app/mailers/emails/merge_requests.rb
index 06ccce7f895..cf6950966e1 100644
--- a/app/mailers/emails/merge_requests.rb
+++ b/app/mailers/emails/merge_requests.rb
@@ -23,7 +23,6 @@ module Emails
end
end
-
# Over rides default behavour to show source/target
# Formats arguments into a String suitable for use as an email subject
#
@@ -63,4 +62,5 @@ module Emails
subject << " | " + extra.join(' | ') if extra.present?
subject
end
+
end