mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-13 10:41:38 -05:00
16 lines
345 B
Ruby
16 lines
345 B
Ruby
|
|
class Api::V1::Overland::BatchesController < ApplicationController
|
||
|
|
skip_forgery_protection
|
||
|
|
|
||
|
|
def create
|
||
|
|
Overland::BatchCreatingJob.perform_later(batch_params)
|
||
|
|
|
||
|
|
render json: { result: 'ok' }, status: :created
|
||
|
|
end
|
||
|
|
|
||
|
|
private
|
||
|
|
|
||
|
|
def batch_params
|
||
|
|
params.permit(locations: [:type, geometry: {}, properties: {}], batch: {})
|
||
|
|
end
|
||
|
|
end
|