fix path for health endpoint
All checks were successful
Build and Publish / build-release (push) Successful in 4m18s

This commit is contained in:
2026-04-15 12:14:31 -05:00
parent 1acd340dfb
commit 2c8000c757

View File

@@ -8,12 +8,12 @@ defmodule PolicyServiceWeb.Router do
plug OpenApiSpex.Plug.PutApiSpec, module: PolicyServiceWeb.ApiSpec plug OpenApiSpex.Plug.PutApiSpec, module: PolicyServiceWeb.ApiSpec
end end
scope "/api" do
pipe_through [:api]
get "/health", HealthController, :health get "/health", HealthController, :health
get "/health/ready", HealthController, :ready get "/health/ready", HealthController, :ready
scope "/api" do
pipe_through [:api]
get "/openapi", OpenApiSpex.Plug.RenderSpec, [] get "/openapi", OpenApiSpex.Plug.RenderSpec, []
scope "/v1" do scope "/v1" do