admin: New page to list tags

This commit is contained in:
nemunaire 2022-05-24 21:25:27 +02:00
commit 80917ae436
5 changed files with 84 additions and 0 deletions

View file

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