summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/store.js.coffee
blob: f0feea764196cf093e4eb4c130db9d9f576c85d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# http://emberjs.com/guides/models/#toc_store
# http://emberjs.com/guides/models/pushing-records-into-the-store/

App.ApplicationStore = DS.Store.extend({

})

# Override the default adapter with the `DS.ActiveModelAdapter` which
# is built to work nicely with the ActiveModel::Serializers gem.
App.ApplicationAdapter = DS.ActiveModelAdapter.extend({

})