scinote-web/app/notifications/delivery_notification.rb

15 lines
200 B
Ruby

# frozen_string_literal: true
class DeliveryNotification < BaseNotification
def self.subtype
:delivery
end
def message
params[:message]
end
def title
params[:title]
end
end