Ruby on Rails Wednesday, August 7, 2013



On Wed, Aug 7, 2013 at 1:49 PM, Tushar Patil <tushar01patil@gmail.com> wrote:
I have a user model in  which username and email field, i am login with username  when i am creating user i want it's email may be blank, but when i am register user from another model it gives error User email can't be blank.
I already make changes email field in confgi/devise.rb, but it doesn't work.

Here is My User model

class User < ActiveRecord::Base

  has_and_belongs_to_many :roles

  devise :database_authenticatable, :registerable, :rememberable, :token_authenticatable, :trackable,
         :validatable, :timeoutable ,:lockable, :recoverable , :authentication_keys => [:username]

  attr_accessible :email, :username, :password, :password_confirmation, :remember_me, :role_ids, :roles
  validates :email , :presence => false
end
Please, let me know where i am wrong.

Thanks,
Tushar Patil.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAMFjjReXVW4_vkrp%3DBfXZ0HK8nDfKPpiTP6hMGCqxUXa7Wu3vQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAPSjBZcVY1eeffDvi6pUEVUG%2BkE59qVjKahc7gB7yGotJ6DBpg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment