A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: collab def playlist

+6 -7
+5 -6
src/definitions/output/collaboration.json
··· 35 35 }, 36 36 "playlist": { 37 37 "type": "object", 38 - "required": ["id", "hint", "kind"], 38 + "required": ["kind", "playlist"], 39 39 "properties": { 40 - "id": { "type": "string" }, 41 - "hint": { 40 + "kind": { "type": "string", "const": "playlist" }, 41 + "playlist": { 42 42 "type": "string", 43 - "description": "Hint at where this collaborator resides and/or what the id represents." 44 - }, 45 - "kind": { "type": "string", "const": "playlist" } 43 + "description": "The name of the playlist, matches the `playlist` property of a playlist item" 44 + } 46 45 } 47 46 } 48 47 }
+1 -1
src/definitions/output/playlistItem.json
··· 14 14 "type": "array", 15 15 "items": { "type": "ref", "ref": "#criterion" } 16 16 }, 17 - "playlist": { "type": "string" }, 17 + "playlist": { "type": "string", "description": "The name of the playlist" }, 18 18 "positionedAfter": { 19 19 "type": "string", 20 20 "description": "Id of the item that this item should be positioned after"