Don't notify users about relations that are not visible (#1005).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12015 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
7509dda1ff
commit
0087d237f7
|
@ -68,6 +68,19 @@ class Journal < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def each_notification(users, &block)
|
||||||
|
if users.any?
|
||||||
|
users_by_details_visibility = users.group_by do |user|
|
||||||
|
visible_details(user)
|
||||||
|
end
|
||||||
|
users_by_details_visibility.each do |visible_details, users|
|
||||||
|
if notes? || visible_details.any?
|
||||||
|
yield(users)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Returns the new status if the journal contains a status change, otherwise nil
|
# Returns the new status if the journal contains a status change, otherwise nil
|
||||||
def new_status
|
def new_status
|
||||||
c = details.detect {|detail| detail.prop_key == 'status_id'}
|
c = details.detect {|detail| detail.prop_key == 'status_id'}
|
||||||
|
|
|
@ -81,9 +81,10 @@ class Mailer < ActionMailer::Base
|
||||||
issue = journal.journalized.reload
|
issue = journal.journalized.reload
|
||||||
to = journal.notified_users
|
to = journal.notified_users
|
||||||
cc = journal.notified_watchers
|
cc = journal.notified_watchers
|
||||||
issue.each_notification(to + cc) do |users|
|
journal.each_notification(to + cc) do |users|
|
||||||
next unless journal.notes? || journal.visible_details(users.first).any?
|
issue.each_notification(users) do |users2|
|
||||||
Mailer.issue_edit(journal, to & users, cc & users).deliver
|
Mailer.issue_edit(journal, to & users2, cc & users2).deliver
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -374,6 +374,22 @@ class MailerTest < ActiveSupport::TestCase
|
||||||
assert_mail_body_match '(Private notes)', last_email
|
assert_mail_body_match '(Private notes)', last_email
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_issue_edit_with_relation_should_notify_users_who_can_see_the_related_issue
|
||||||
|
issue = Issue.generate!
|
||||||
|
private_issue = Issue.generate!(:is_private => true)
|
||||||
|
IssueRelation.create!(:issue_from => issue, :issue_to => private_issue, :relation_type => 'relates')
|
||||||
|
issue.reload
|
||||||
|
assert_equal 1, issue.journals.size
|
||||||
|
journal = issue.journals.first
|
||||||
|
ActionMailer::Base.deliveries.clear
|
||||||
|
|
||||||
|
Mailer.deliver_issue_edit(journal)
|
||||||
|
last_email.bcc.each do |email|
|
||||||
|
user = User.find_by_mail(email)
|
||||||
|
assert private_issue.visible?(user), "Issue was not visible to #{user}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def test_document_added
|
def test_document_added
|
||||||
document = Document.find(1)
|
document = Document.find(1)
|
||||||
valid_languages.each do |lang|
|
valid_languages.each do |lang|
|
||||||
|
|
Loading…
Reference in New Issue