Playing around with ember data relationships.

This commit is contained in:
Matthew Dillon 2015-01-22 09:08:56 -09:00
parent 0e16d2b0f4
commit ecb376778c
8 changed files with 81 additions and 9 deletions
app/routes

7
app/routes/species.js Normal file
View file

@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
return this.store.find('species');
}
});