Commit a770009

mo khan <mo@mokhan.ca>
2014-04-18 20:00:01
use findAll instead of find.
1 parent 2d33fd5
Changed files (1)
app
assets
javascripts
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');
   }
 });