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

  • SEARCH
  • Home
  • 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 6690241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:36:51+00:00 2026-05-26T05:36:51+00:00

Im using the ‘Devise’ gem on a rails 3.1.1 app for creating users and

  • 0

Im using the ‘Devise’ gem on a rails 3.1.1 app for creating users and signing in, but i need to add fields for profile as @user.build_profile but i dont know where to add this, i also need to change the default redirect_to after signing in.

  • 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-26T05:36:51+00:00Added an answer on May 26, 2026 at 5:36 am

    You can add the fields that you need to your models just as you normally would through a migration. If you are using the default devise views through rails generate devise:views, then you will want to add your fields to the new and edit views inside of the Registration views in devise.

    As for changing the default redirect after sign_in, I would start with reading the Devise Wiki. You can simply add to your application controller:

     protected
    
          def stored_location_for(resource)
            nil
          end
    
          def after_sign_in_path_for(resource)
            #path to which you wish to redirect
          end
    end
    

    This will allow you to customize that route. You can also look at the registrations controller within devise to see the other methods that you can override.

    Edit:

    Overriding the controller:

    You would create your own controller that inherits from Devise::RegistrationsController. From there you only need to specify the methods that you need to override, and not every single one. For instance:

    def create
      build_resource
      resource.build_profile
    
      if resource.save
        set_flash_message :notice, :signed_up
        redirect_to after_sign_up_path_for(resource)
      else
        clean_up_passwords(resource)
        render_with_scope :new
      end
    end
    

    Then add the above lines for stored location and after_sign_in_path. You also have to tell Devise in your routes.rb to use your new controller with, devise_for :users, :controllers => { :registrations => 'your_controller_name } I have an example of this on my blog, and the full source is on Github.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a web service to transfer json to an iPhone app. I'm using
Using Xcode4.2.1, with a basic PhoneGap template based app. (I say template, but I
Using Rails 3.2.0.rc2 and ruby 1.9.3p0 In app/views/requests/_form.html.erb I have the following code for
using a binary search tree I need to add to a vector all int
Using C#, I need a class called User that has a username, password, active
Using Rails 3.2.0 with haml and sass: I Would like to link an external
Using the navigator.geolocation object in JavaScript. Trying to establish accurate ranges, but wondering exactly
Using Rails 3.2.0 with haml, sass and coffeescript: Basically I am trying to disable
Using NSDateComponents I know how to get the day component, but this gives me
Using gcc and ld on x86_64 linux I need to link against a newer

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.