Files
fizzy/app/jobs/push_notification_job.rb
T
2025-08-29 09:39:48 +02:00

6 lines
127 B
Ruby

class PushNotificationJob < ApplicationJob
def perform(notification)
NotificationPusher.new(notification).push
end
end