WIP - rebuilding from ground up
This commit is contained in:
parent
62020a9865
commit
ced3f7d2d2
16 changed files with 154 additions and 4 deletions
7
app/routes/strains/index.js
Normal file
7
app/routes/strains/index.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Route.extend({
|
||||
model: function() {
|
||||
return this.store.findAll('strain');
|
||||
}
|
||||
});
|
4
app/routes/strains/show.js
Normal file
4
app/routes/strains/show.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Route.extend({
|
||||
});
|
Reference in a new issue