scinote-web/app/notifications/delivery_notification.rb

24 lines
438 B
Ruby
Raw Normal View History

2023-10-11 19:43:20 +08:00
# frozen_string_literal: true
class DeliveryNotification < BaseNotification
def self.subtype
:delivery
end
2023-10-11 19:43:20 +08:00
def message
params[:message]
end
def title
params[:title]
end
def subject
return unless params[:subject_id] && params[:subject_class]
params[:subject_class].constantize.find(params[:subject_id])
rescue ActiveRecord::RecordNotFound
NonExistantRecord.new(params[:subject_name])
end
2023-10-11 19:43:20 +08:00
end