1import Ember from 'ember'; 2 3export default Ember.Route.extend({ 4 model: function(params) { 5 return this.store.find('cake', params); 6 }, 7});