1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-06-18 07:27:49 +02:00

admin: /activity pseudo-page now works

This commit is contained in:
Harvey Tindall 2023-10-22 12:31:06 +01:00
parent 47ce8a9ec4
commit d00f3fcfbc
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2

View File

@ -118,6 +118,7 @@ func (app *appContext) loadRoutes(router *gin.Engine) {
router.GET(p+"/accounts", app.AdminPage)
router.GET(p+"/settings", app.AdminPage)
router.GET(p+"/activity", app.AdminPage)
router.GET(p+"/lang/:page/:file", app.ServeLang)
router.GET(p+"/token/login", app.getTokenLogin)
router.GET(p+"/token/refresh", app.getTokenRefresh)