NAME
Catalyst::Action::DetachOnDie - If something dies in a chain, stop the chain
VERSION
version 0.001000
SYNOPSIS
package MyApp::Controller::Foo;
use Moose;
BEGIN { extends 'Catalyst::Controller' }
__PACKAGE__->config(
action => {
'*' => { ActionClass => 'DetachOnDie' },
},
);
...;
DESCRIPTION
See Catalyst::ActionRole::DetachOnDie for what this thing really is.
AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Arthur Axel "fREW" Schmidt.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.