Skip to content

Instantly share code, notes, and snippets.

@m-nakamura145
Created November 27, 2018 03:24
Show Gist options
  • Save m-nakamura145/708a1fba0017a15ee173af9bd3afbaf0 to your computer and use it in GitHub Desktop.
Save m-nakamura145/708a1fba0017a15ee173af9bd3afbaf0 to your computer and use it in GitHub Desktop.
require 'worker/base_worker'
class NotifyVisitedReservationWorker < BaseWorker
sidekiq_options queue: :reservation, retry: 3
def perform(reservation_id)
reservation = Reservation.find(reservation_id)
reservation.notify_visited
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment