Brad Leupen
Brad Leupen
Great! Our organization wont be able to upgrade to v17 for quite some time. It will require a massive refactor of our app for little benefit (we are still on...
Hello, I plan to take a look in the morning once I'm back at my desk. Sent from my iPhone > On Nov 29, 2015, at 7:06 PM, Em. [email protected]...
That’s too bad about swig. Sounds like switching to nunjucks might be the way to go. What do you think? > On Nov 29, 2015, at 7:06 PM, Em. [email protected]...
halacioius will use the `location` header to rewrite the self rel. Here's what I do in nearly all of my POST routes. assuming I have a GET route to look...
you dont have to use that technique. you can also set the location manually: ```javascript req.server.createPet(req.payload) .then(pet => reply(pet).created(`/pets/${pet.id}`)) .catch(reply); ```
Hey there, I need to go through and clean up these old tickets. The best way to implement `toHal()` now is to make use of the entity's `configure()` method. its...
Hi! You can’t really halify a top level array. We wrap all of our collection routes to return collection entities that include metadata about the collection (count, index, total count),...
Hi! You can’t really halify a top level array. We wrap all of our collection routes to return collection entities that include metadata about the collection (count, index, total count),...
Is this the spec you are referencing? http://mamund.site44.com/misc/hal-forms/
i like that idea. You can do this easily already in route configuration, but its more difficult programmatically: ``` javascript { handler: function(req, reply) { reply({ name: 'John Doe', friends:...