Commit 0a93838fd418f1a5d22bbb51d088f1db14e85dca

Authored by Daniel
Committed by Rafael Manzo
1 parent 62d63bd4

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