mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-12 18:21:38 -05:00
11 lines
215 B
Ruby
11 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
|