I use Ember Data for all the standard operations like findRecord, findAll, etc, but what about for custom endpoints outside of the standard stuff, like: /posts/latest. For this small example, it probably would make more sense to use findAll()
and sort on the client. In my other scenario however, it isn’t so simple so the work is being done on the server. What is the best way to handle this?
Thanks!