dbfb141b6f
In-flight jobs queued before deploy would fail if the old class is missing. This shim delegates to the new notification.push method. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
149 B
Ruby
8 lines
149 B
Ruby
class PushNotificationJob < ApplicationJob
|
|
discard_on ActiveJob::DeserializationError
|
|
|
|
def perform(notification)
|
|
notification.push
|
|
end
|
|
end
|