main
1# http://emberjs.com/guides/models/#toc_store
2# http://emberjs.com/guides/models/pushing-records-into-the-store/
3
4App.ApplicationStore = DS.Store.extend({
5
6})
7
8# Override the default adapter with the `DS.ActiveModelAdapter` which
9# is built to work nicely with the ActiveModel::Serializers gem.
10App.ApplicationAdapter = DS.ActiveModelAdapter.extend({
11
12})