WIP
This commit is contained in:
parent
825b5b0d89
commit
f158d7a7f3
10 changed files with 105 additions and 6 deletions
4
app/routes/collections/1.js
Normal file
4
app/routes/collections/1.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Route.extend({
|
||||
});
|
11
app/routes/collections/index.js
Normal file
11
app/routes/collections/index.js
Normal 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'
|
||||
});
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue