Let’s say we’re on a record of “startup” entity.
We also have a “rating” entity linked to startup by startup_id.
I want to place an “Add rating” button on “startup” view, that will do 2 things:
- create a row in “rating” table and set startup_id on that row (done this)
- open the edit screen for the new record.
Is there a way to do the second thing, in actions?
Thanks