admin/ui: Split settings page into sync and settings pages
Some checks are pending
continuous-integration/drone/push Build is running
Some checks are pending
continuous-integration/drone/push Build is running
This commit is contained in:
parent
96567fe288
commit
5033287cd1
6 changed files with 211 additions and 163 deletions
|
|
@ -68,7 +68,10 @@ func declareStaticRoutes(router *gin.RouterGroup, cfg *settings.Settings, baseUR
|
|||
router.GET("/pki/*_", func(c *gin.Context) {
|
||||
serveIndex(c)
|
||||
})
|
||||
router.GET("/settings/*_", func(c *gin.Context) {
|
||||
router.GET("/settings", func(c *gin.Context) {
|
||||
serveIndex(c)
|
||||
})
|
||||
router.GET("/sync", func(c *gin.Context) {
|
||||
serveIndex(c)
|
||||
})
|
||||
router.GET("/teams/*_", func(c *gin.Context) {
|
||||
|
|
|
|||
Reference in a new issue