6 lines
139 B
Ruby
6 lines
139 B
Ruby
class ImportCompletedJob < EmailJob
|
|
|
|
def perform(import)
|
|
ImportMailer.import_completed_notification(import.id).deliver_now
|
|
end
|
|
end
|