add auth
Some checks failed
Build and Publish / build-release (push) Failing after 5s

This commit is contained in:
2026-05-15 10:21:36 -05:00
parent 3cc9e2764e
commit 141104822e
13 changed files with 314 additions and 47 deletions

View File

@@ -20,6 +20,11 @@ defmodule ProviderServiceWeb.Endpoint do
plug(Plug.MethodOverride)
plug(Plug.Head)
plug(Plug.Session, @session_options)
plug(CORSPlug)
plug(CORSPlug,
origin: ["*"],
headers: ["*"]
)
plug(ProviderServiceWeb.Router)
end