BigW Consortium Gitlab

omniauth_callbacks_controller.rb 360 Bytes
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
 
  def ldap
    # We only find ourselves here if the authentication to LDAP was successful.
    info = request.env["omniauth.auth"]["info"]
    @user = User.find_for_ldap_auth(info)
    if @user.persisted?
      @user.remember_me = true
    end
    sign_in_and_redirect @user
  end

end