Sha256: 672c6fecd37c82a01fecc65fcf19c42c8b0cc66c2aa2d099405f12df26b2f62e
Contents?: true
Size: 722 Bytes
Versions: 1
Compression:
Stored size: 722 Bytes
Contents
attr_accessor :oauth_callback attr_accessor :current_password validates_presence_of :email, if: :email_required? validates_uniqueness_of :email, allow_blank: true, if: :email_changed? validates_format_of :email, with: Devise.email_regexp, allow_blank: true, if: :email_changed? validates_presence_of :password, if: :password_required? validates_confirmation_of :password, if: :password_required? validates_length_of :password, within: Devise.password_length, allow_blank: true def password_required? return false if email.blank? || !email_required? !persisted? || !password.nil? || !password_confirmation.nil? end def email_required? @oauth_callback != true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
happy_seed-0.0.21 | lib/generators/happy_seed/omniauth/templates/user.rb |