8 lines
225 B
Ruby
8 lines
225 B
Ruby
|
|
class DeletedEventRegistrationAutomaticallyJob < ActiveJob::Base
|
||
|
|
queue_as :default
|
||
|
|
|
||
|
|
def perform(conference, user, event)
|
||
|
|
Mailbot.deleted_event_registration_automatically(conference, user, event).deliver_now
|
||
|
|
end
|
||
|
|
end
|