1
0
Fork 0
sortable-recipes/ember-ui/mirage/config.js
2019-12-27 22:51:18 -06:00

12 lines
239 B
JavaScript

export default function() {
this.urlPrefix = 'http://localhost:8000/';
this.get('/meals/random', (schema) => {
let id = 'random';
schema.meals.create({id});
return schema.meals.find(id);
});
this.get('/meal/:id');
}