mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
15 lines
200 B
Ruby
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
|