From 19602b42fb3f66909caad8444dadc70b0e90dea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=98=AD?= <81747598+lan-yonghui@users.noreply.github.com> Date: Mon, 15 Jun 2026 15:15:09 +0800 Subject: [PATCH] feat: add QR code verification endpoint to password expiration checks (#13049) --- core/middleware/password_expired.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/middleware/password_expired.go b/core/middleware/password_expired.go index 7432a73a8..911397bde 100644 --- a/core/middleware/password_expired.go +++ b/core/middleware/password_expired.go @@ -27,6 +27,7 @@ func PasswordExpired() gin.HandlerFunc { c.Request.URL.Path == "/api/v2/core/settings/search" || c.Request.URL.Path == "/api/v2/core/settings/search/base" || c.Request.URL.Path == "/api/v2/core/xpack/settings/search" || + c.Request.URL.Path == "/api/v2/core/xapp/verifyQRCode" || c.Request.URL.Path == "/api/v2/core/enterprise/users/info" || c.Request.URL.Path == "/api/v2/core/enterprise/licenses/info" || c.Request.URL.Path == "/api/v2/core/enterprise/licenses/status" ||