CAS + SAML authentication feature (#6425)
* Cas authentication feature * Config * Remove class_eval + Omniauth initializer * Codeclimate review * Codeclimate review 2 * Codeclimate review 3 * Remove uid/email reconciliation * SAML authentication * Clean up code * Improve login form * Fix code style issues * Add locales
... | ... | @@ -32,6 +32,9 @@ gem 'devise', '~> 4.4' |
gem 'devise-two-factor', '~> 3.0' | ||
gem 'devise_pam_authenticatable2', '~> 8.0' | ||
gem 'omniauth-cas', '~> 1.1', install_if: -> { ENV['CAS_ENABLED'] == 'true' } | ||
gem 'omniauth-saml', '~> 1.8', install_if: -> { ENV['SAML_ENABLED'] == 'true' } | ||
gem 'omniauth', '~> 1.2' | ||
gem 'doorkeeper', '~> 4.2' | ||
gem 'fast_blank', '~> 1.0' | ||
... | ... |
app/models/identity.rb
0 → 100644
spec/models/identity_spec.rb
0 → 100644
Please register or sign in to comment