summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs/app/routes/application.js
blob: 296a375ba2a650cba1196979517847f9ef67f813 (plain)
1
2
3
4
5
6
7
8
import Ember from 'ember';

export default Ember.Route.extend({
    repo: Ember.inject.service(),
    model() {
        return this.get('repo').findAll();
    }
});