From 7dca1a180b11a5a47a63d39db1ed513b5c316270 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 22 Jan 2016 20:05:53 +0000 Subject: [PATCH] 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 --- app/models/mail_handler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb index dad13ebf8..cff397a52 100644 --- a/app/models/mail_handler.rb +++ b/app/models/mail_handler.rb @@ -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