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