Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4326946
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T09:28:10+00:00 2026-05-21T09:28:10+00:00

In a blog app I want every user to access a form to post

  • 0

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

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T09:28:11+00:00Added an answer on May 21, 2026 at 9:28 am

    If you want to take the user to comment form after every sign in, add in ApplicationController:

    #after_sign_in_path_for is called by devise
    def after_sign_in_path_for(resource_or_scope)
      comment_path...
    end
    

    If you want to take user back to the page they were at before sign in, you could save the current controller+action in session and redirect back:

    session[:pre_login_controller] = params[:controller]
    session[:pre_login_action] = params[:action]
    

    And then :

    def after_sign_in_path_for(resource_or_scope)
      if session[:pre_login_controller] && session[:pre_login_action]
        "#{session[:pre_login_controller]}/#{session[:pre_login_action]}"
      else
         some default path -- root url or comment path etc
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a blog app and i want to show each post in a
I'm trying to create an app like a blog, with 3 models: user, post
I am creating little blog app. I want to return post, and (my problem),
My coldfusion app allows users to post a comment as with any typical blog.
If I already have a blog app done with Django and I want to
I want to make an iPhone OS app for a Wordpress blog, and I'm
I have a mini blog app, and a reply system. I want to list
In a mini blog app, I want to create a delete function, so that
i have a mini blog app, and a 'timeline' . there i want to
I have a fairly standard blog app with the usual post and comments controller/models

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.