class MAuth::Rack::RequestAuthenticatorNoAppStatus
same as MAuth::Rack::RequestAuthenticator
, but does not authenticate /app_status
Public Instance Methods
should_authenticate?(env)
click to toggle source
Calls superclass method
MAuth::Rack::RequestAuthenticator#should_authenticate?
# File lib/mauth/rack.rb, line 87 def should_authenticate?(env) env['PATH_INFO'] != "/app_status" && super end