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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:19:05+00:00 2026-05-13T23:19:05+00:00

I’m not really sure if there is a single problem here or I have

  • 0

I’m not really sure if there is a single problem here or I have approached this in the wrong way, but any suggestions would be greatly appreciated!

In the application when a user signs up they get privileges and their page gets set up, they can then invite colleagues by email.

The email has an activation code tagged on the end. An example url would be “/user/new/xxxxxxxxx“.

Here’s the problem: I need the colleague to be able to create a User account as well, with just their basic info, so they can log into the account and set up their corner of the app.

When the colleague makes a mistake on the user sign up form, the url forgets there is an activation code, and jumps back with validation messages and a pretty bare url of ‘/users’.
When the colleague amends their mistakes and clicks sign up, they are submitted as a fully fledged user, not an invited colleague.

This happens because i have an if clause on the ‘users/new’ page

<% if @activation_code %>
  Show colleague messages of invitation and happiness
<% else %>
  Show fully fledged user ego stroking messages
<% end %>

My routing to find the code parameter of the url is:

map.signup '/users/new/:code', :controller => 'users', :action => 'new', :code => nil

Like I said before, have I approached this completely wrong? is is there one problem here?

UPDATE
This Rails Cast Episode Solved nearly all of the problems I was having: Beta Invitations

Although to distinguish if the person was coming from an invitation or not I just used this conditions block:

if !@user.invitation_id.blank?

and that worked great.

  • 1 1 Answer
  • 1 View
  • 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-13T23:19:06+00:00Added an answer on May 13, 2026 at 11:19 pm

    Im guessing your controller looks like this:

    def create
      if @user = User.create(params[:user]) && @user.new_record?
        #take the user to where you want them to go
      else
        #there was an error
        flash[:error] = "Oops, blah blah blah"
        render :action => "new"
      end
    end
    

    Problem is that you dont have the @activation_code in the view anymore. So, I would suggest that you pass the activation_code back in a hidden form field.

    def create
      @activation_code = params[:activation_code]
      if @user = User.create(params[:user]) && @user.new_record?
        #take the user to where you want them to go
      else
        #there was an error
        flash[:error] = "Oops, blah blah blah"
        render :action => "new"
      end
    end
    

    This way when you render the “new” view from the create action your view will still have the required @activation_code to help it render the appropriate conditional elements.

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I know there's a lot of other questions out there that deal with this
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text

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.