From b58f94acd67968a024be7cd86e428de3576baf6a Mon Sep 17 00:00:00 2001 From: Tim Riedl Date: Fri, 25 Apr 2025 09:16:44 +0200 Subject: [PATCH] Add api route for searching identity authentication in admin panel --- routers/api/v1/api.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go index 9b9b079906..6ac90165e2 100644 --- a/routers/api/v1/api.go +++ b/routers/api/v1/api.go @@ -1663,6 +1663,7 @@ func Routes() *web.Router { m.Group("/admin", func() { m.Group("/identity-auth", func() { + m.Get("", admin.SearchAuth) m.Group("/oauth", func() { m.Get("", admin.SearchOauthAuth) m.Put("", bind(api.CreateAuthOauth2Option{}), admin.CreateOauthAuth)