Mercurial > pub > Impl
view Lib/DOM/Providers/Security.pm @ 105:a6e9759ff88a
Fixed a validation errors parameters
author | wizard |
---|---|
date | Tue, 11 May 2010 02:59:49 +0400 |
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;