2009-03-28 03:38:57 +03:00
|
|
|
class IssueObserver < ActiveRecord::Observer
|
2011-03-30 21:40:00 +04:00
|
|
|
attr_accessor :send_notification
|
|
|
|
|
2009-03-28 03:38:57 +03:00
|
|
|
def after_create(issue)
|
2011-03-30 21:40:00 +04:00
|
|
|
if self.send_notification
|
|
|
|
Mailer.deliver_issue_add(issue) if Setting.notified_events.include?('issue_added')
|
|
|
|
end
|
|
|
|
clear_notification
|
|
|
|
end
|
|
|
|
|
|
|
|
# Wrap send_notification so it defaults to true, when it's nil
|
|
|
|
def send_notification
|
|
|
|
return true if @send_notification.nil?
|
|
|
|
return @send_notification
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Need to clear the notification setting after each usage otherwise it might be cached
|
|
|
|
def clear_notification
|
|
|
|
@send_notification = true
|
2009-03-28 03:38:57 +03:00
|
|
|
end
|
|
|
|
end
|