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:
authorJarka Košanová <jarka@gitlab.com>2019-02-13 13:50:24 +0300
committerJarka Košanová <jarka@gitlab.com>2019-02-20 12:17:49 +0300
commit38f3c2e18684f94f75ab52e5039203e8321ed7d7 (patch)
tree6d24ff69dc9f88a24aa76d98c5ef4f43b98e9280 /app/mailers
parent66b20a66f4b25a69ff3f59da855ac2cb38c8bca9 (diff)
Remove link after issue move when no permissions
Don't show new issue link after move when a user does not have permissions to display the new issue
Diffstat (limited to 'app/mailers')
-rw-r--r--app/mailers/emails/issues.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/mailers/emails/issues.rb b/app/mailers/emails/issues.rb
index 654ae211310..d2e334fb856 100644
--- a/app/mailers/emails/issues.rb
+++ b/app/mailers/emails/issues.rb
@@ -74,6 +74,7 @@ module Emails
@new_issue = new_issue
@new_project = new_issue.project
+ @can_access_project = recipient.can?(:read_project, @new_project)
mail_answer_thread(issue, issue_thread_options(updated_by_user.id, recipient.id, reason))
end