mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 06:39:39 +02:00
8 lines
105 B
Ruby
8 lines
105 B
Ruby
|
class ImportJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(import)
|
||
|
import.publish
|
||
|
end
|
||
|
end
|