Add a REST API endpoint that fetches a collection of recently published score sets.
Details are left to the developer, but here are some things to consider:
- We could return full ScoreSet view model objects, ShortScoreSets, or just score set URNs. It's probably more useful to return objects, and for a short list, ScoreSets should be fine.
- The caller might be able to specify how many to return, but the limit should be capped at a fairly low number like 20.
- We could filter on a date range, or we could just take the most recently-published score sets.
Add a REST API endpoint that fetches a collection of recently published score sets.
Details are left to the developer, but here are some things to consider: