In a blog app I want every user to access a form to post a comment.
When the user submit the comment form he is redirected to the Devise sign_in form if is not logged in.
before_filter :authenticate_user!, :except => [:index, :show, :new]
How could I once the user sign_in, redirect him to the comment form and fill all fields ?
Thanks in advance