summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/routes/videos_route.js
blob: cec8a16b0f1044c22f0a9f1b060ca7d5b19dcc51 (plain)
1
2
3
4
5
App.VideosRoute = Ember.Route.extend({
  model: function() {
    return this.store.findAll('video');
  }
});