Skip to content
Snippets Groups Projects
Commit 43cad71f authored by Alex Denisov's avatar Alex Denisov
Browse files

Duplicate code removed from IssueObserver#after_update

parent 2cb0a62f
No related branches found
No related tags found
1 merge request!1326Issue status changed notifications
Loading
Loading
@@ -10,17 +10,13 @@ class IssueObserver < ActiveRecord::Observer
def after_update(issue)
send_reassigned_email(issue) if issue.is_being_reassigned?
 
if issue.is_being_closed?
Note.create_status_change_note(issue, current_user, 'closed')
status = nil
status = 'closed' if issue.is_being_closed?
status = 'reopened' if issue.is_being_reopened?
if status
Note.create_status_change_note(issue, current_user, status)
[issue.author, issue.assignee].compact.each do |recipient|
Notify.issue_status_changed_email(recipient.id, issue.id, 'closed', current_user)
end
end
if issue.is_being_reopened?
Note.create_status_change_note(issue, current_user, 'reopened')
[issue.author, issue.assignee].compact.each do |recipient|
Notify.issue_status_changed_email(recipient.id, issue.id, 'reopened', current_user)
Notify.issue_status_changed_email(recipient.id, issue.id, status, current_user)
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment