##// END OF EJS Templates
Adds an option to send email on "Assignee updated" in application settings (#16362)....
Jean-Philippe Lang -
r12700:4bf18a697c04
parent child
Show More
@@ -190,7 +190,7 class Journal < ActiveRecord::Base
190 190 if notify? && (Setting.notified_events.include?('issue_updated') ||
191 191 (Setting.notified_events.include?('issue_note_added') && notes.present?) ||
192 192 (Setting.notified_events.include?('issue_status_updated') && new_status.present?) ||
193 (Setting.notified_events.include?('issue_assigned_to_updated') && new_value_for('assigned_to_id').present?) ||
193 (Setting.notified_events.include?('issue_assigned_to_updated') && detail_for_attribute('assigned_to_id').present?) ||
194 194 (Setting.notified_events.include?('issue_priority_updated') && new_value_for('priority_id').present?)
195 195 )
196 196 Mailer.deliver_issue_edit(self)
General Comments 0
You need to be logged in to leave comments. Login now