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 745451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T09:05:47+00:00 2026-05-14T09:05:47+00:00

I’m reading these two pages resources Adding more RESTful actions The Rails Guides page

  • 0

I’m reading these two pages

  1. resources
  2. Adding more RESTful actions

The Rails Guides page shows

map.resources :photos, :new => { :upload => :post }

And its corresponding URL

/photos/upload

This looks wonderful.


My routes.rb shows this

map.resources :users, :new => { :signup => :get, :register => :post }

When I do: [~/my_app]$ rake routes

I see the two new routes added

  signup_new_user GET    /users/new/signup(.:format)
register_new_user POST   /users/new/register(.:format)

Note the inclusion of /new! I don’t want that. I just want /users/signup and /users/register (as described in the Rails Routing Guide).

Any help?

  • 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-14T09:05:47+00:00Added an answer on May 14, 2026 at 9:05 am

    When you expose a controller as a resource, following actions are automatically added:

    show
    index
    new
    create
    edit
    update
    destroy
    

    These actions can be categorized in to two groups:

    • :member actions

    The URL for the member action has the id of the target resource. E.g:

    users/1/edit 
    users/1
    

    You can think of :member action as an instance method on a class. It always applies on an existing resource.

    Default member actions: show, edit, update, destroy

    • :collection actions

    The URL for the :collection action does not contain the id of the target resource. E.g:

    users/login
    users/register
    

    You can think of :collection action as a static method on a class.

    Default collection actions: index, new, create

    In your case you need two new actions for registration. These actions belong to :collection type( as you do not have the id of the user while submitting these actions). Your route can be as follows:

    map.resources :users, :collection => { :signup => :get, :register => :post }
    

    The URL for the actions are as follows:

    users/signup
    users/register
    

    If you want to remove a standard action generated by Rails use :except/:only options:

    map.resources :foo, :only => :show
    
    map.resources :foo, :except => [:destroy, :show]
    

    Edit 1

    I usually treat the confirmation action as a :member action. In this case params[id] will contain the confirmation code.

    Route configuration:

    map.resources :users, :member => { :confirm => :get}
    

    URL

    /users/xab3454a/confirm
    
    confirm_user_path(:id => @user.confirmation_code) # returns the URL above
    

    Controller

    class UsersController < ApplicationController
      def confirm
        # assuming you have an attribute called `confirmation_code` in `users` table 
        # and you have added a uniq index on the column!!
        if User.find_by_confirmation_code(params[id])
          # success
        else
          # error
        end
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
Basically, what I'm trying to create is a page of div tags, each has
I am reading a book about Javascript and jQuery and using one of the
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
In my XML file chapters tag has more chapter tag.i need to display chapters
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I'm making a simple page using Google Maps API 3. My first. One marker
I am trying to understand how to use SyndicationItem to display feed which is

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.