activity: pseudo links work on click

This commit is contained in:
Harvey Tindall
2023-10-22 14:02:22 +01:00
parent d00f3fcfbc
commit 0238c6778c
5 changed files with 70 additions and 4 deletions
+2
View File
@@ -119,6 +119,8 @@ 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+"/accounts/user/:userID", app.AdminPage)
router.GET(p+"/invites/:code", app.AdminPage)
router.GET(p+"/lang/:page/:file", app.ServeLang)
router.GET(p+"/token/login", app.getTokenLogin)
router.GET(p+"/token/refresh", app.getTokenRefresh)