Brad Leupen
Brad Leupen
Try setting `absolute: true` in the halacious plugin registration options. I'm curious how you are using rep.factory. Can you post a code example?
could you post an updated code snippet with your latest approach? thanks!
have you tried declarative embedding? this should preserve the protocol: ``` javascript plugins: { hal: { api: 'users', embedded: { users: { path: 'users' // payload property to embed, href:...
I just spun up a quick example on the current release (3.1.5). Here's the code: ``` javascript 'use strict'; var hapi = require('hapi'); var halacious = require('../'); var fs =...
I see. Would global configuration options for protocol and host work for you? > On Jul 26, 2015, at 12:31 PM, Matt Travi [email protected] wrote: > > That does look...
Yes, I've given it some thought. What type of stream are you dealing with? An object stream that you'd like to embed into a collection? Sent from my iPhone On...
You can recursively embed now (albeit not with streams, obviously). You may have meant with streams but just making sure you're aware. On 09/17/2014 10:08 AM, stephen-bartell wrote: > Exactly...
Still thinking about this one. One stumbling block is that Halacious does its best to decorate an existing route rather than wholly define one. In other words, take out Halacious...