I that rendering a template with request.render is supposed to be equivalent to doing so with reply.view but the prior doesn't send request to the context function configured in server.views.
server.views({
...
context: request => request.app.someProperty
});
Using reply.view works fine but with request.render request in undefined.
Edit: I needed this to use request.render as a workaround for #106
I that rendering a template with
request.renderis supposed to be equivalent to doing so withreply.viewbut the prior doesn't sendrequestto thecontextfunction configured inserver.views.Using
reply.viewworks fine but withrequest.renderrequestin undefined.Edit: I needed this to use
request.renderas a workaround for #106