I would like to add an invite_code requirement for users to sign up. Ie. in addition to requiring them to specify an email/password combo, I want an additional field :invite_code. This is a temporary fix so that non-wanted users cannot login during a given alpha period.

I'm confused since Devise doesn't add controllers. I'm sort of familiar with the concept of virtual attributes, and it strikes me that I could add a :invite_code to the model, and then just hard code a step now where it says invite code must equal 12345 or whatever for now.

Does this make sense with devise authentication? And how do I go approaching this from a proper rails restful approach?

Thank you very much.

link|improve this question

I have added: def invite_code @invite_code end ... which allows the invite_code to be accessible as a virtual attribute, but where should I do the logic for the invite_code must equal "12345" ? – Dave Sep 13 '10 at 22:22
feedback

2 Answers

up vote 15 down vote accepted

1) A virtual attribute usually needs a setter in addition to a getter.

Easiest way is to add

attr_accessor :invite_code
attr_accessible :invite_code # allow invite_code to be set via mass-assignment
    # See comment by James, below.

to the User model

2) I presume that Devise wants the User model to validate. So you could stop the validation by adding

validates_each :invite_code, :on => :create do |record, attr, value|
    record.errors.add attr, "Please enter correct invite code" unless
      value && value == "12345"
end

NOTE: added :on => :create since the invite_code is only needed for creating the new user, not for updating.

link|improve this answer
That's the best way, because you control the validation message. – François Beausoleil Sep 14 '10 at 1:24
Thank you very much. – Dave Sep 14 '10 at 20:18
it helped me a lot – Jasmine Mar 11 '11 at 13:14
for some reason value does not hold any value. Maybe this is because I have my new.html.erb file in a different directory from the user directory? – Justin Meltzer Jun 10 '11 at 22:55
2  
@justin-meltzer I had the same issue, add :invite_code to attr_accessible as well (e.g. attr_accessible :email, :password, :password_confirmation, :remember_me, :invite_code) – James Hollingworth Jun 27 '11 at 18:42
show 1 more comment
feedback

Try this: http://github.com/scambra/devise_invitable

link|improve this answer
Thanks for the link, but I think this does something slightly different - it allows users to invite other users - wheras for now I simply wish to lock-down sign-up of new users altogether unless they have an invitation code I give out. – Dave Sep 14 '10 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.