logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catalyst::ActionContainer - Catalyst Action Container

Authors

       Catalyst Contributors, see Catalyst.pm

Description

       This is a container for actions. The dispatcher sets up a tree of these to represent the various dispatch
       points in your application.

Methods

new(\%data|$part)
       Can be called with { part => $part, actions => \%actions } for full construction or with just a part,
       which will result in an empty actions hashref to be populated via add_action later

   get_action($name)
       Returns an action from this container based on the action name, or undef

   add_action($action,[$name])
       Adds an action, optionally providing a name to override $action->name

   actions
       Accessor to the actions hashref, containing all actions in this container.

   part
       Accessor to the path part this container resolves to. Also what the container stringifies to.

   meta
       Provided by Moose

Name

       Catalyst::ActionContainer - Catalyst Action Container

Synopsis

       See Catalyst.

See Also