Chatwoot/app/jobs/notification/push_notification_job.rb

8 lines
198 B
Ruby
Raw Permalink Normal View History

class Notification::PushNotificationJob < ApplicationJob
queue_as :default
def perform(notification)
Notification::PushNotificationService.new(notification: notification).perform
end
end