Catalyst::ActionRole::MatchRequestMethod - Dispatch actions based on HTTP request methods


Catalyst-ActionRole-MatchRequestMethod documentation  | view source Contained in the Catalyst-ActionRole-MatchRequestMethod distribution.

Index


NAME

Top

Catalyst::ActionRole::MatchRequestMethod - Dispatch actions based on HTTP request methods

SYNOPSIS

Top

    package MyApp::Controller::Foo;

    use Moose;
    use namespace::autoclean;

    BEGIN {
        extends 'Catalyst::Controller::ActionRole';
    }

    __PACKAGE__->config(
        action_roles => ['MatchRequestMethod'],
    );

    sub get_foo    : Path Method('GET')                { ... }
    sub update_foo : Path Method('POST')               { ... }
    sub create_foo : Path Method('PUT')                { ... }
    sub delete_foo : Path Method('DELETE')             { ... }
    sub foo        : Path Method('GET') Method('POST') { ... }

DESCRIPTION

Top

This module allows you to write Catalyst actions which only match certain HTTP request methods. Actions which would normally be dispatched to will not match if the request method is incorrect, allowing less specific actions to match the path instead.

SEE ALSO

Top

Catalyst::Controller::ActionRole

Catalyst::Action::REST

inspired by: http://dev.catalystframework.org/wiki/gettingstarted/howtos/HTTP_method_matching_for_actions

AUTHOR

Top

  Florian Ragwitz <rafl@debian.org>

COPYRIGHT AND LICENSE

Top


Catalyst-ActionRole-MatchRequestMethod documentation  | view source Contained in the Catalyst-ActionRole-MatchRequestMethod distribution.