Patch #23328 » changeset_r619e156986dde1b674fa1e56bad4bc862c6e9df3.diff
| app/models/project.rb | ||
|---|---|---|
| 524 | 524 |
# Returns the users that should be notified on project events |
| 525 | 525 |
def notified_users |
| 526 | 526 |
# TODO: User part should be extracted to User#notify_about? |
| 527 |
members.select {|m| m.principal.present? && (m.mail_notification? || m.principal.mail_notification == 'all')}.collect {|m| m.principal}
|
|
| 527 |
members.includes(:principal).select {|m| m.principal.present? && (m.mail_notification? || m.principal.mail_notification == 'all')}.collect {|m| m.principal}
|
|
| 528 | 528 |
end |
| 529 | 529 | |
| 530 | 530 |
# Returns a scope of all custom fields enabled for project issues |