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.

I have build a user model using Michael Hartl tutorial. In his tutorial, he states the model is being built off of falsifying case sensitivity to allow users to login with the combination of: "foo@bar.com, Foo@bar.com, FOO@bar.com"

User Model

class User < ActiveRecord::Base 
  attr_accessible :name, :email

  before_save { self.email.downcase! }
  before_save :create_remember_token

  validates :name, presence: true, length: { maximum: 50 }
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, presence:   true,
                format:     { with: VALID_EMAIL_REGEX },
                uniqueness: { case_sensitive: false }

  validates :password, presence: true, length: { minimum: 6 }, :on => :create
  validates :password_confirmation, presence: true

end

However when my user tries to login using "Foo@bar.com" it does not allow. They have to make the first letter lower case in order for it to authenticate.

Anyone know why case_sensitive false is not working?

TIA

share|improve this question
Running a console test I am able to narrow down possibly Friendly_id being the issue. Any suggestions on a work around? user_with_same_email.valid? FriendlyId::Slug Load (25.7ms) SELECT "friendly_id_slugs".* FROM "friendly_id_slugs" WHERE "friendly_id_slugs"."sluggable_type" = 'User' AND (slug = 'test-name' OR slug LIKE 'test-name--%') ORDER BY LENGTH(slug) DESC, slug DESC LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE LOWER("users"."email") = LOWER('TESTNAME@TEST.COM') LIMIT 1 => false – RubyNewbie Nov 2 '12 at 23:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.