mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-05 07:01:03 -05:00
29 lines
616 B
Ruby
29 lines
616 B
Ruby
class Notification < ActiveRecord::Base
|
|
belongs_to :sender, :class_name => 'Member'
|
|
belongs_to :recipient, :class_name => 'Member'
|
|
belongs_to :post
|
|
|
|
default_scope { order('created_at DESC') }
|
|
scope :unread, -> { where(:read => false) }
|
|
|
|
before_create :replace_blank_subject
|
|
after_create :send_email
|
|
|
|
def self.unread_count
|
|
self.unread.count
|
|
end
|
|
|
|
def replace_blank_subject
|
|
if self.subject.nil? or self.subject =~ /^\s*$/
|
|
self.subject = "(no subject)"
|
|
end
|
|
end
|
|
|
|
def send_email
|
|
if self.recipient.send_notification_email
|
|
Notifier.notify(self).deliver
|
|
end
|
|
end
|
|
|
|
end
|