about summary refs log tree commit diff
path: root/app/models/concerns/pam_authenticable.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-04-25 02:49:25 +0200
committerGitHub <noreply@github.com>2019-04-25 02:49:25 +0200
commite451ba0e837eb5b3d4f7fe75ca3e16680afaf129 (patch)
tree212519b375fa3f963fbaf318e169faf8862ae554 /app/models/concerns/pam_authenticable.rb
parentf27d7093513c0265010d019adc01b3f7ea02ef47 (diff)
Fix LDAP/PAM/SAML/CAS users not being approved instantly (#10621)
Diffstat (limited to 'app/models/concerns/pam_authenticable.rb')
-rw-r--r--app/models/concerns/pam_authenticable.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/concerns/pam_authenticable.rb b/app/models/concerns/pam_authenticable.rb
index 2f651c1a3..6169d4dfa 100644
--- a/app/models/concerns/pam_authenticable.rb
+++ b/app/models/concerns/pam_authenticable.rb
@@ -34,6 +34,7 @@ module PamAuthenticable
       self.confirmed_at = Time.now.utc
       self.admin        = false
       self.account      = account
+      self.external     = true
 
       account.destroy! unless save
     end