Files
fizzy/saas/app/jobs/notification/native_push_job.rb
T
Rosa Gutierrez b5205ce6b2 Rename Push to PushTarget for better readability
PushTarget#push reads more naturally than Push#push. The push target
is the thing that pushes notifications to a specific destination.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-25 19:31:13 +01:00

6 lines
149 B
Ruby

class Notification::NativePushJob < ApplicationJob
def perform(notification)
Notification::PushTarget::Native.new(notification).push
end
end