1 import Ember from 'ember';
2
3 export default Ember.Route.extend({
4 model() {
5 return this.store.findAll('sound');
6 }
7 });