I have a controller in my grails 3.2.9 project that was created using the generate-controller command. I would like to change the default view that gets rendered after the update() method in the controller is called. It defaults to rendering the show.gsp, but I would like it to render a custom gsp. Is it possible to change this behavior? I've tried changing the last line of the update() method to:
'*'{ respond BOSI, [status: OK, view: 'myView'] }
but the show.gsp continues to get rendered. I'm fairly new to the grails framework, so any help is greatly appreciated.