Commit d510f6b8bc6214ffbd8711ccca77d7515eaae8fc

Authored by Daniel
Committed by Rafael Reggiani Manzo
1 parent 1c30a4de

[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
... ...