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