I discovered this issue within minutes of installing Bauhaus. It looks like this was probably added to address issue #26. Your scaffold command doesn't even add these methods to the generated models, and especially If you try to use it with an existing model, they will not be defined. Therefore these operations error out with "$redirect is undefined." This was easy to fix, e.g. in ModelController.php:188 like so:
I discovered this issue within minutes of installing Bauhaus. It looks like this was probably added to address issue #26. Your scaffold command doesn't even add these methods to the generated models, and especially If you try to use it with an existing model, they will not be defined. Therefore these operations error out with "$redirect is undefined." This was easy to fix, e.g. in ModelController.php:188 like so:
This is definitely preferable to adding all those empty methods to my models when they are not needed.