8 lines
198 B
Ruby
Executable File
8 lines
198 B
Ruby
Executable File
class Notification::PushNotificationJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(notification)
|
|
Notification::PushNotificationService.new(notification: notification).perform
|
|
end
|
|
end
|