After upgrading to Ember.js RC2, I get the following failure warning:
DEPRECATION: register("store", "main") is now deprecated in-favour of register("store:main");
What do I need to change in this minimal application to fix it?
App = Ember.Application.create();
App.Store = DS.Store.extend({
revision: 11,
adapter: 'DS.FixtureAdapter'
});
source
share