mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-02 06:27:46 -05:00
26 lines
723 B
Ruby
26 lines
723 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Notification < ApplicationRecord
|
|
belongs_to :sender, class_name: 'Member', inverse_of: :sent_notifications
|
|
belongs_to :recipient, class_name: 'Member', inverse_of: :notifications
|
|
belongs_to :post, optional: true
|
|
|
|
validates :subject, length: { maximum: 255 }
|
|
|
|
scope :unread, -> { where(read: false) }
|
|
scope :by_recipient, ->(recipient) { where(recipient_id: recipient) }
|
|
|
|
before_create :replace_blank_subject
|
|
after_create :send_message
|
|
|
|
def send_message
|
|
sender.send_message(recipient, body, subject) if recipient.send_notification_email
|
|
end
|
|
|
|
private
|
|
|
|
def replace_blank_subject
|
|
self.subject = "(no subject)" if subject.nil? || subject =~ /^\s*$/
|
|
end
|
|
end
|