Commit a770009
Changed files (1)
app
assets
javascripts
routes
app/assets/javascripts/routes/videos_route.js
@@ -1,5 +1,5 @@
App.VideosRoute = Ember.Route.extend({
model: function() {
- return this.store.find('video');
+ return this.store.findAll('video');
}
});