1
0
forked from baron/baron-sso

메인 주소 sso.hmac.kr로 통일함

This commit is contained in:
2026-01-22 09:17:16 +09:00
parent eb41d6cc2b
commit f261618dc6
5 changed files with 10 additions and 6 deletions

View File

@@ -143,7 +143,7 @@ func (h *AuthHandler) InitEnchantedLink(c *fiber.Ctx) error {
// Generate Link
frontendURL := os.Getenv("FRONTEND_URL")
if frontendURL == "" {
frontendURL = "http://ssologin.hmac.kr"
frontendURL = "http://sso.hmac.kr"
}
link := fmt.Sprintf("%s/verify/%s", frontendURL, token)
@@ -343,7 +343,7 @@ func (h *AuthHandler) InitQRLogin(c *fiber.Ctx) error {
// QR 코드 페이로드를 실제 접속 가능한 URL로 변경합니다.
frontendURL := os.Getenv("FRONTEND_URL")
if frontendURL == "" {
frontendURL = "https://ssologin.hmac.kr"
frontendURL = "https://sso.hmac.kr"
}
qrPayload := fmt.Sprintf("%s/approve?ref=%s", frontendURL, pendingRef)