1
0
Fork 0
sortable-recipes/ember-ui-modern/mirage/config.js
2020-03-02 09:26:23 -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');
}