6 lines
127 B
Ruby
6 lines
127 B
Ruby
class PushNotificationJob < ApplicationJob
|
|
def perform(notification)
|
|
NotificationPusher.new(notification).push
|
|
end
|
|
end
|