ENH: Collection List (#20)

This commit is contained in:
Matthew Ryan Dillon 2017-09-10 08:23:31 -07:00 committed by GitHub
parent 77071dfa35
commit 55a1c4fca6
26 changed files with 284 additions and 3 deletions

11
app/routes/collections.js Normal file
View file

@ -0,0 +1,11 @@
import Ember from 'ember';
const { Route } = Ember;
export default Route.extend({
model() {
return this.get('store').findAll('collection', {
include: 'project,study-location,collection-method,collection-type'
});
}
});