mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-05 15:11:31 +00:00
Don't check permission to add watchers if no_permission_check option is set (#7017).
git-svn-id: http://svn.redmine.org/redmine/trunk@15093 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
91da86a688
commit
7dca1a180b
@ -314,7 +314,7 @@ class MailHandler < ActionMailer::Base
|
||||
# Adds To and Cc as watchers of the given object if the sender has the
|
||||
# appropriate permission
|
||||
def add_watchers(obj)
|
||||
if user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project)
|
||||
if handler_options[:no_permission_check] || user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project)
|
||||
addresses = [email.to, email.cc].flatten.compact.uniq.collect {|a| a.strip.downcase}
|
||||
unless addresses.empty?
|
||||
users = User.active.having_mail(addresses).to_a
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user