Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a contact form in my rails app. Right now it just redirects to the home page no matter what. I would like to redirect to the user_path if the user is logged in and the homepage if they are not.. How would i do this?

*using devise

contact_controller

  def create
    @message = Message.new(params[:message])

    if @message.valid?
      NotificationsMailer.new_message(@message).deliver
      redirect_to(user_path, :notice => "Message was successfully sent.")
    else
      flash.now.alert = "Please fill all fields."
      render :new
    end
  end

end
share|improve this question

2 Answers

you can just redirect elsewhere if they are logged in:

if current_user
    redirect_to(user_path, :notice => "Message was successfully sent.")
else
    redirect_to root_path
end

This is assuming your current_xxx is setup as "user"

share|improve this answer
right but how would i tag that on to my current if/else (listed above) – js111 Jul 12 '12 at 23:02
You don't tack it on; you include it inside of your current if-else. Just replace your redirect_to line with the if-else coneybeare gave you. – davidcelis Jul 13 '12 at 0:17

Use user_signed_in? helper

def create
  @message = Message.new(params[:message])

  if @message.valid?
    NotificationsMailer.new_message(@message).deliver
    if user_signed_in?
      redirect_to user_path, :notice => "Message was successfully sent."
    else
      redirect_to root_path
    end
  else
    flash.now.alert = "Please fill all fields."
    render :new
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.