scinote-web/app/notifications/delivery_notification.rb

16 lines
200 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
end