Christopher Thomas

Results 55 comments of Christopher Thomas

Yeah I like that idea, I've seen projects use the wiki functionality for it and use the README.md to link into the front page and then break stuff up, especially...

I'm also facing some issues with dns right now because I have a dnsmasq container I'm trying to run and I'm wondering if there is ever a scenario where you'd...

What I see is that its merging my modified items into the original structure somehow. from the addResponseInterceptor call, I do the following ``` return { data: RestClientData(data); } ```...

This is a problem that I encountered today, restful is allowing me to define a data structure, then completely ignoring what I return and merging the result into one big...

> > Based on your like on #3 I assume this is for the case where plan is executed and outputting a plan which is then applied from a clean...

Wow, this is exactly what I wanted. I think it also makes more sense to split these two because really it's how you'd expect them to be, so it was...

@deleugpn from what I've seen in the laravel framework code, there is a request build before the middleware and constructor are called. So I think you can inject the Request...

@lorisleiva If I attach middleware to the route, then I expect them to trigger when the route is executed and before the controller is executed. Hence it's "in the middle",...

> > One solution could be to add a flag on the Middleware itself that decides whether or not it should resolve before the controller is instantiated. > > This....

In my case, grabbing a shallow controller to grab the middleware and then throw away wouldn't work, because if the object can't be constructed with the correct data, it'll correctly...