Skip to content

Instantly share code, notes, and snippets.

@nlf
Created May 14, 2014 20:28
Show Gist options
  • Save nlf/7ddafedbaca382047498 to your computer and use it in GitHub Desktop.
Save nlf/7ddafedbaca382047498 to your computer and use it in GitHub Desktop.
var defaults = {
something: 'data'
}
server.ext('onPreResponse', function (request, reply) {
if (request.response.variety === 'view') {
request.response.source.context = Hoek.applyToDefaults(defaults, request.response.source.context);
}
reply();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment