Matt Apperson
Matt Apperson
@JedWatson @creynders I agree and think this is important. I also think middleware should be able to augment the results and see the augmented results from other middleware (though I...
I would motion that async.waterfall is used vs async.each to accomplish this
@creynders no, I am saying support 1 argument. Just because waterfall supports passing more does not mean we have to pay attention to more. Any method in js can have...
I'm saying: ``` js instance.pre('post-request', function(origRequest, accumulator, next) { accumulator.body.foo = 'bar'; next(null, accumulator); }); instance.pre('post-request', function(origRequest, accumulator, next) { accumulator.body.bar = 'Foo'; next(null, accumulator); }); instance.callHook'pre:post-request', function(accumulator, next) {...
@creynders if I may, let me provide my feedback to your points. 1) this was an abstract example so please don't take it to literally. 😊 I think there are...
Note: To me / for me this ties in heavily to https://github.com/keystonejs/grappling-hook/issues/14
@creynders fair enough. I only came here because @JedWatson recommended that this was the right place for it when I was talking to him 😊