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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-04 15:09:39 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-04 15:09:39 +0300
commit8322f051740fba113c5c1f6fba96b9c943240746 (patch)
treebc695dfd5538f9378041f4a4fa6bd097ecf58954 /app/helpers/notify_helper.rb
parentf9fe7cda4bdbc477d8d76e5def4023f7d03bab46 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/notify_helper.rb')
-rw-r--r--app/helpers/notify_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/notify_helper.rb b/app/helpers/notify_helper.rb
index fb68029928c..db7527d9d58 100644
--- a/app/helpers/notify_helper.rb
+++ b/app/helpers/notify_helper.rb
@@ -5,7 +5,7 @@ module NotifyHelper
link_to(entity.to_reference, merge_request_url(entity, *args))
end
- def issue_reference_link(entity, *args)
- link_to(entity.to_reference, issue_url(entity, *args))
+ def issue_reference_link(entity, *args, full: false)
+ link_to(entity.to_reference(full: full), issue_url(entity, *args))
end
end