class Ddr::Auth::FailureApp

Public Instance Methods

respond() click to toggle source
Calls superclass method
# File lib/ddr/auth/failure_app.rb, line 5
def respond
  if scope == :user && Ddr::Auth.require_shib_user_authn
    store_location!
    redirect_to user_omniauth_authorize_path(:shibboleth)
  else
    super
  end
end