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