Mercurial > pub > Impl
view Lib/DOM/Providers/Security.pm @ 69:8c7b88bdb663
Cookie Simple auth support
author | wizard |
---|---|
date | Wed, 24 Mar 2010 17:41:41 +0300 |
parents | 16ada169ca75 |
children |
line wrap: on
line source
use strict; package DOM::Providers::Security; use Security; sub GetProviderInfo { return { Name => 'Security', Host => 'DOM::Site', Objects => { Session => \&GetSession } } } sub GetSession { return Security->CurrentSession; } 1;