Small fix to update song played
All checks were successful
Build / build (push) Successful in 50s

This commit is contained in:
2025-10-26 20:40:48 +01:00
parent a6294e46f2
commit 61cab73ffc
3 changed files with 7 additions and 9 deletions

View File

@@ -77,6 +77,7 @@ func (s *Server) RegisterRoutes() http.Handler {
syncGroup.GET("", sync.SyncGamesNewOnlyChanges)
syncGroup.GET("/progress", sync.SyncProgress)
syncGroup.GET("/new", sync.SyncGamesNewOnlyChanges)
syncGroup.GET("/full", sync.SyncGamesNewFull)
syncGroup.GET("/new/full", sync.SyncGamesNewFull)
syncGroup.GET("/quick", sync.SyncGamesNewOnlyChanges)
syncGroup.GET("/reset", sync.ResetGames)