docbrown/app/models/mention.rb
Anna Buianova a3e246a327 Fix mention validation when validating an empty instance (#3188)
* Fix mention validation when validating an empty instance

* Fix NotifyMailer spec
2019-06-18 21:36:01 -04:00

36 lines
1.1 KiB
Ruby

class Mention < ApplicationRecord
belongs_to :user
belongs_to :mentionable, polymorphic: true
validates :user_id, presence: true,
uniqueness: { scope: %i[mentionable_id
mentionable_type] }
validates :mentionable_id, presence: true
validates :mentionable_type, presence: true
validate :permission
after_create :send_email_notification
class << self
def create_all(notifiable)
Mentions::CreateAllJob.perform_later(notifiable.id, notifiable.class.name)
end
def create_all_without_delay(notifiable)
Mentions::CreateAllJob.perform_now(notifiable.id, notifiable.class.name)
end
end
def send_email_notification
user = User.find(user_id)
Mentions::SendEmailNotificationJob.perform_later(id) if user.email.present? && user.email_mention_notifications
end
def send_email_notification_without_delay
user = User.find(user_id)
Mentions::SendEmailNotificationJob.perform_now(id) if user.email.present? && user.email_mention_notifications
end
def permission
errors.add(:mentionable_id, "is not valid.") unless mentionable&.valid?
end
end