Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We've been happily running Authlogic for our app for a while. Now, however, we would like to turn off the uniqueness constraint on emails when creating users. Is there a simple way to do this?

I was hoping for something like:

acts_as_authentic do |c|  
    c.validate_uniqueness_of_email_field = false # This doesn't work  
end  

What is the exact directive to place within the block to turn off the uniqueness constraint?

Many thanks for your help.

  • Shailen Tuli
share|improve this question

1 Answer

up vote 3 down vote accepted

This seems to work:

acts_as_authentic do |c|
  c.validates_uniqueness_of_email_field_options :if => lambda { false }
end

Or:

acts_as_authentic do |c|
  c.validates_uniqueness_of_email_field_options :on => []
end

Basically the block is treated as a Rails validator. Unfortunately the value false does not work here, nor does the block { false }.

share|improve this answer
Many thanks, the first solution you suggested worked like a charm. Very helpful. - Shailen – Shailen Tuli Mar 1 '11 at 2:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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