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