mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-14 19:21:39 -05:00
12 lines
215 B
Ruby
12 lines
215 B
Ruby
|
|
class Overland::BatchCreatingJob < ApplicationJob
|
||
|
|
queue_as :default
|
||
|
|
|
||
|
|
def perform(params)
|
||
|
|
data = Overland::Params.new(params).call
|
||
|
|
|
||
|
|
data.each do |location|
|
||
|
|
Point.create!(location)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|