Jeff Scott Brown
Jeff Scott Brown
@codeconsole Are there particular types of constructor args that are not working for you? I am building up some automated tests around this using inheritance and constructor args and am...
The info I have right now is the following: > breaks extending controllers and passing the super args I have built up tests that involve extending controller and passing super...
@codeconsole I got some info this afternoon that indicates that changes you have recently made to scaffolding may demonstrate the issue. I am going to test with the latest scaffolding...
Thank you! This is helpful. I will work up some tests and a solution.
If you have a `show()` method in `UserController`, a `show(Map)` method in `GenericController` and you want `UserController` to extend `GenericController`, which of those methods would you expect to be invoked...
@codeconsole If you can share a small simple sample 6.2.1-SNAPSHOT project which demonstrates code that doesn't compile with the change that was proposed and later reverted, I am happy to...
> I will create you an example app that replicates the issue with the previous commit. Thank you!
> The only way GenericController.show(Map) would be called is if UserController does not have a show method. This is the way it is currently behaving. When `show(Map)` is invoked, what...
It looks like the `show(Map)` method in `GenericController` is only there to be a wrapper around `respond resource.get(params.id), model: model`. If that is the case, I don't think that method...
Thank you. I will look forward to the sample app and that will help me provide more clarity.