1
0
Fork 0
sortable-recipes/app/routes/meal.js
2019-12-22 11:47:00 -06:00

7 lines
160 B
JavaScript

import Route from '@ember/routing/route';
export default class MealRoute extends Route {
model({ id }) {
return this.store.findRecord('meal', id);
}
}