Method: EffectiveDeviseUser#active_for_authentication?
- Defined in:
- app/models/concerns/effective_devise_user.rb
#active_for_authentication? ⇒ Boolean
141 142 143 |
# File 'app/models/concerns/effective_devise_user.rb', line 141 def active_for_authentication? super && (respond_to?(:archived?) ? !archived? : true) end |