dawarich/app/jobs/point_creating_job.rb

9 lines
201 B
Ruby

class PointCreatingJob < ApplicationJob
queue_as :default
def perform(point_params)
parsed_params = OwnTracks::Params.new(point_params).call
point = Point.create(parsed_params)
end
end