From 736912e2342208158e8cc7b7246746b9c80d05e5 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Fri, 8 Aug 2014 13:49:49 +0100 Subject: [PATCH] clarify song order in AddPlayLogRequest --- api/api.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/api.go b/api/api.go index aa7aa26..89a9eb7 100644 --- a/api/api.go +++ b/api/api.go @@ -31,6 +31,8 @@ type GetManySongsResponse struct { Results []*Song `json:"results"` } +// Add an entry to the playlog. Songs are in increasing time order +// (most recently played last). type AddPlayLogRequest struct { Songs []SongID `json:"songs"` } -- GitLab