Forgive a basic question here.
From reading around, I understand it's not best practice to trigger the create action of a controller from another - I'm looking for advice on how I should be organizing my code in the following situation:
I have two controllers: cases and notifications.
When a new case is created I want it to also create a new notification.
The notification create action creates a new instance in it's model, and sends an email.
Am I right to think that I shouldn't just be calling Notification#create from my cases controller? Should I be extracting this to a helper or module? If so, what would it look like? The other roughly similar posts on this topic don't elaborate.
Thank you.
