diff options
Diffstat (limited to 'app/models/project.rb')
-rw-r--r-- | app/models/project.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index 8829f04ad..5cc8ab9d0 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -352,6 +352,11 @@ class Project < ActiveRecord::Base members.select {|m| m.mail_notification? || m.user.mail_notification?}.collect {|m| m.user.mail} end + # Returns the users that should be notified on project events + def notified_users + members.select {|m| m.mail_notification? || m.user.mail_notification?}.collect {|m| m.user} + end + # Returns an array of all custom fields enabled for project issues # (explictly associated custom fields and custom fields enabled for all projects) def all_issue_custom_fields |