From afa70efdad4893193034175fa8c4256c03c3600f Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 2 Nov 2015 16:38:34 -0700 Subject: [PATCH] Tweak mirage config --- app/mirage/config.js | 83 ++++---------------------------------------- 1 file changed, 6 insertions(+), 77 deletions(-) diff --git a/app/mirage/config.js b/app/mirage/config.js index d006425..02a1be7 100644 --- a/app/mirage/config.js +++ b/app/mirage/config.js @@ -1,82 +1,11 @@ export default function() { - - // These comments are here to help you get started. Feel free to delete them. - - /* - Config (with defaults). - - Note: these only affect routes defined *after* them! - */ - // this.urlPrefix = ''; // make this `http://localhost:8080`, for example, if your API is on a different server - // this.namespace = ''; // make this `api`, for example, if your API is namespaced - // this.timing = 400; // delay for each request, automatically set to 0 during testing - - /* - Route shorthand cheatsheet - */ - /* - GET shorthands - - // Collections - this.get('/contacts'); - this.get('/contacts', 'users'); - this.get('/contacts', ['contacts', 'addresses']); - - // Single objects - this.get('/contacts/:id'); - this.get('/contacts/:id', 'user'); - this.get('/contacts/:id', ['contact', 'addresses']); - */ - - /* - POST shorthands - - this.post('/contacts'); - this.post('/contacts', 'user'); // specify the type of resource to be created - */ - - /* - PUT shorthands - - this.put('/contacts/:id'); - this.put('/contacts/:id', 'user'); // specify the type of resource to be updated - */ - - /* - DELETE shorthands - - this.del('/contacts/:id'); - this.del('/contacts/:id', 'user'); // specify the type of resource to be deleted - - // Single object + related resources. Make sure parent resource is first. - this.del('/contacts/:id', ['contact', 'addresses']); - */ - - /* - Function fallback. Manipulate data in the db via - - - db.{collection} - - db.{collection}.find(id) - - db.{collection}.where(query) - - db.{collection}.update(target, attrs) - - db.{collection}.remove(target) - - // Example: return a single object with related models - this.get('/contacts/:id', function(db, request) { - var contactId = +request.params.id; - - return { - contact: db.contacts.find(contactId), - addresses: db.addresses.where({contact_id: contactId}) - }; - }); - - */ + // Don't use mirage for development (for now) + this.urlPrefix = 'http://127.0.0.1:8901'; + this.namespace = 'api'; + this.passthrough(); } -/* -You can optionally export a config that is only loaded during tests export function testConfig() { - + this.urlPrefix = 'http://127.0.0.1:8901'; + this.namespace = 'api'; } -*/