feat(server/m7-352): GET /api/me/system-playlists-status for home placeholders

This commit is contained in:
2026-05-04 18:13:13 -04:00
parent db361c8305
commit a8630a1355
3 changed files with 144 additions and 0 deletions
+1
View File
@@ -46,6 +46,7 @@ func Mount(r chi.Router, pool *pgxpool.Pool, logger *slog.Logger, events *playev
authed.Use(auth.RequireUser(pool))
authed.Post("/auth/logout", h.handleLogout)
authed.Get("/me", h.handleGetMe)
authed.Get("/me/system-playlists-status", h.handleGetSystemPlaylistsStatus)
authed.Get("/me/listenbrainz", h.handleGetListenBrainz)
authed.Put("/me/listenbrainz", h.handlePutListenBrainz)
authed.Get("/me/history", h.handleGetMyHistory)