Add config to disable registration

This commit is contained in:
2026-02-24 00:00:35 +01:00
parent 67b305786b
commit 00a5a6c045
7 changed files with 72 additions and 1 deletions

View File

@@ -30,6 +30,10 @@ func Setup(config *config.Config) *gin.Engine {
ws := r.Group("/ws")
ws.Use(middleware.Auth())
ws.GET("/appinfo", func(c *gin.Context) {
routes.GetAppInfo(appcontext.AppContext{C: c, Db: db, I18n: bundle, Config: config})
})
ws.GET("/mybooks/read", func(c *gin.Context) {
routes.GetMyBooksReadHandler(appcontext.AppContext{C: c, Db: db, I18n: bundle, Config: config})
})