app/models/user.rb in devise_token_auth-0.1.12 vs app/models/user.rb in devise_token_auth-0.1.13

- old
+ new

@@ -5,10 +5,13 @@ :recoverable, :rememberable, :trackable, :validatable, :confirmable serialize :tokens, JSON + # only validate unique emails among email registration users + validates_uniqueness_of :email, conditions: -> { where(provider: 'email') } + def valid_token?(client_id, token) return false unless self.tokens[client_id]['expiry'] > 2.weeks.ago return false unless BCrypt::Password.new(self.tokens[client_id]['token']) == token return true @@ -16,7 +19,12 @@ def serializable_hash(options={}) options ||= {} options[:except] ||= [:tokens] super(options) + end + + # don't use default devise email validation + def email_changed? + false end end