Skip to content

Instantly share code, notes, and snippets.

@julianrubisch
Created November 18, 2022 08:58
Show Gist options
  • Save julianrubisch/c56ff8421fe0fedfe4c4cf56804c9298 to your computer and use it in GitHub Desktop.
Save julianrubisch/c56ff8421fe0fedfe4c4cf56804c9298 to your computer and use it in GitHub Desktop.
class PurgeOrphanedNotificationsJob < ApplicationJob
queue_as :default
def perform
Notification.find_each do |n|
n.to_notification.message
rescue
n.destroy
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment