I have observers set up on my rails app, that observer after_save(campaign).
Basically the observers look for specific tags in the campaign, and if those tags are present, it creates a new record in the "Achievement" model.
What I am trying to do is, in the campaign controller, see if any of these Achievements have been created by the observers, and if so, redirect the user to that Achievement show page.
I'm sure there is an easy function for this that I just don't know about...but what should I use?
Thanks in advance!