Files
yockboard/app/controllers/api/v1/weather/observations_controller.rb

16 lines
267 B
Ruby

# frozen_string_literal: true
module API
module V1
module Weather
class ObservationsController < APIController
def create
Rails.logger.debug 'Create new observation'
head :ok
end
end
end
end
end