I am writing code to clone object but have no cue from Hobo documentation.
I know how to do it in Rails but it seems no intuitive way to do it in Hobo.
The scenario is to add an button on a record page, clone an existing record, and redirect to new record after the creation.
For example
POST /papers/10/clone
Then the new record 123 will be created.
After that action, it will redirect to page /papers/123
Are there any examples and guides to achieve the scenario?
If Paper has many Comments, how to clone them as well without permission errors?