class Warden::Delegated::Strategy

Public Instance Methods

authenticate!() click to toggle source
# File lib/warden/delegated/strategy.rb, line 5
def authenticate!
  if !env['warden'].authenticated?
    fail!("Not logged in") and return
  end
end