scinote-web/app/notifications/general_notification.rb

20 lines
240 B
Ruby

# frozen_string_literal: true
class GeneralNotification < BaseNotification
def message
params[:message]
end
def title
params[:title]
end
def subtype
params[:type]
end
def subject
params[:subject]
end
end