Coalesce find requests

This commit is contained in:
Piotr Sarnacki 2015-02-10 09:41:16 +01:00
parent dda62c5394
commit bf80fec82f

View File

@ -3,6 +3,7 @@
Adapter = DS.ActiveModelAdapter.extend
host: config.apiEndpoint
coalesceFindRequests: true
ajaxOptions: (url, type, options) ->
hash = @_super(url, type, options)
@ -16,4 +17,7 @@ Adapter = DS.ActiveModelAdapter.extend
hash
findMany: (store, type, ids) ->
@ajax(@buildURL(type.typeKey), 'GET', data: { ids: ids })
`export default Adapter`