From c9668ff1ef9fea01c4ac6734d395dfc011cc5ecc Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Wed, 16 Oct 2024 23:32:23 +0500 Subject: [PATCH] Change openid discovery url --- lib/comfycamp_web/router.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/comfycamp_web/router.ex b/lib/comfycamp_web/router.ex index 9136e7c..545cc4a 100644 --- a/lib/comfycamp_web/router.ex +++ b/lib/comfycamp_web/router.ex @@ -32,7 +32,7 @@ defmodule ComfycampWeb.Router do pipe_through :api post "/oauth/token", OauthController, :token - get "/oauth/discovery", OauthController, :openid_discovery + get "/.well-known/openid-configuration", OauthController, :openid_discovery end # Enable LiveDashboard and Swoosh mailbox preview in development