admin: Replace PKI page by authentication settings, refactor

This commit is contained in:
nemunaire 2025-03-26 12:32:16 +01:00
parent 4dcf1218d8
commit 7e301b8ecb
6 changed files with 114 additions and 33 deletions

View file

@ -50,6 +50,9 @@ func declareStaticRoutes(router *gin.RouterGroup, cfg *settings.Settings, baseUR
router.GET("/", func(c *gin.Context) {
serveIndex(c)
})
router.GET("/auth/*_", func(c *gin.Context) {
serveIndex(c)
})
router.GET("/claims/*_", func(c *gin.Context) {
serveIndex(c)
})