Fix the CLINCH_HOST issue.

This commit is contained in:
Dan Milne
2025-10-26 21:59:27 +11:00
parent 52cfd6122c
commit b5b1d94d47
3 changed files with 7 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ class OidcJwtService
def issuer_url
# In production, this should come from ENV or config
# For now, we'll use a placeholder that can be overridden
ENV.fetch("CLINCH_HOST", "http://localhost:3000")
"https://#{ENV.fetch("CLINCH_HOST", "localhost:3000")}"
end
private