decide.nolog.cz/mirage/config.js
2017-08-01 09:49:02 +02:00

8 lines
293 B
JavaScript

export default function() {
this.namespace = '/api/index.php'; // make this `api`, for example, if your API is namespaced
this.timing = 400; // delay for each request, automatically set to 0 during testing
this.get('/polls/:id');
this.post('/polls');
this.post('/users');
}