feat: Initial observations endpoint

This commit is contained in:
2026-02-16 18:05:44 -05:00
parent c3ec4db852
commit 067e907718
10 changed files with 303 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
module API
class APIController < ApplicationController
skip_forgery_protection
end
end

View File

@@ -0,0 +1,15 @@
# 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