]> source.dussan.org Git - redmine.git/commitdiff
Use eager loaded #principal association instead of #user (#11904).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 22 Sep 2012 09:48:38 +0000 (09:48 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 22 Sep 2012 09:48:38 +0000 (09:48 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10441 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb

index f30832ee9921ee48fb4a217f3e25ea0e0e769a6a..71ffdc8f52e2470d553b4ea6e1b83f2ca616a62e 100644 (file)
@@ -472,7 +472,7 @@ class Project < ActiveRecord::Base
   # Returns the users that should be notified on project events
   def notified_users
     # TODO: User part should be extracted to User#notify_about?
-    members.select {|m| m.mail_notification? || m.user.mail_notification == 'all'}.collect {|m| m.user}
+    members.select {|m| m.mail_notification? || m.user.mail_notification == 'all'}.collect {|m| m.principal}
   end
 
   # Returns an array of all custom fields enabled for project issues