Catalyst-Controller-SimpleCAS
view release on metacpan or search on metacpan
lib/Catalyst/Controller/SimpleCAS.pm view on Meta::CPAN
'+File'
});
has store_path => ( is => 'ro', lazy => 1, default => sub {
my $self = shift;
my $c = $self->_app;
# Default Cas Store path if none was supplied in the config:
return dir( Catalyst::Utils::home($c), 'cas_store' )->stringify;
});
has store_args => ( is => 'ro', isa => 'HashRef', lazy => 1, default => sub {
my $self = shift;
return {
store_dir => $self->store_path,
};
});
has Store => (
does => 'Catalyst::Controller::SimpleCAS::Store',
is => 'ro',
lazy => 1,
( run in 0.661 second using v1.01-cache-2.11-cpan-5f2e87ce722 )