Commit b7f298984e83f567cf2441e6fe7862bc3aea2329

Authored by Daniel
Committed by Rafael Reggiani Manzo
1 parent 34adc7c4

[Colab] Fix password validation for User with OmniAuth provider

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/user.rb
... ... @@ -24,6 +24,6 @@ class User < ActiveRecord::Base
24 24 protected
25 25  
26 26 def password_required?
27   - provider.nil?
  27 + provider.nil? && super
28 28 end
29 29 end
... ...