The before-filter that runs the provider chain and writes the result to req.identity. Lives at top level (not Tep::Auth::Filter) to keep dispatch simple under spinel.
# File 'lib/tep/auth.rb', line 68defbefore(req,res)ident=Tep::Auth.identify(req)ifident==nilreq.identity=Tep::Identity.anonymouselsereq.identity=identend0end