Re: [Rails] Re: how to check the creation of a user? rails4

2015-06-28 Thread Colin Law
On 28 June 2015 at 03:51, Elizabeth McGurty wrote: > Just gave this a quick look... > What strikes me as odd is this in your User validation: > validates :name, presence: true, length: { maximum: 50 },uniqueness: { > case_sensitive: false } > You want the user name unique yet you do not care ab

[Rails] Re: how to check the creation of a user? rails4

2015-06-27 Thread Elizabeth McGurty
Just gave this a quick look... What strikes me as odd is this in your User validation: validates :name, presence: true, length: { maximum: 50 },uniqueness: { case_sensitive: false } You want the user name unique yet you do not care about case sensitivity? CAT, cat, Cat, caT And then yo