mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
23 lines
417 B
Ruby
23 lines
417 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DeliveryNotification < BaseNotification
|
|
def self.subtype
|
|
:delivery
|
|
end
|
|
|
|
def message
|
|
params[:message]
|
|
end
|
|
|
|
def title
|
|
params[:title]
|
|
end
|
|
|
|
def subject
|
|
return unless params[:subject_id] && params[:subject_class]
|
|
|
|
subject_class.find(params[:subject_id])
|
|
rescue ActiveRecord::RecordNotFound
|
|
NonExistantRecord.new(params[:subject_name])
|
|
end
|
|
end
|