I'm working on an activity diagram that has a decision node. First action is "review application" then it goes into the decision node. This splits into accepted or rejected. On both cases, I need to add "Update audit trail" and "notify user" actions. And then the flow goes to the final node.
The "Update audit trail" and "notify user" actions will use the same method in the application, but obviously behave differently depending on the decision.
0-->Review_Application--> <> --> ??
The question is, after the decision node can I duplicate the last two actions twice for each decision flow and then join them to the final node. Or should I use a join node to after the decision node and not duplicate the last two actions? What is the recommended way to achieve this?
Many Thanks