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

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') { ... }

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.

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

Florian Ragwitz <rafl@debian.org>

This software is copyright (c) 2010 by Florian Ragwitz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.