|
NAMEPath::Dispatcher::Rule::Metadata - match path's metadata VERSIONversion 1.08 SYNOPSIS my $path = Path::Dispatcher::Path->new(
path => '/REST/Ticket'
metadata => {
http_method => 'POST',
},
);
my $rule = Path::Dispatcher::Rule::Metadata->new(
field => 'http_method',
matcher => Path::Dispatcher::Rule::Eq->new(string => 'POST'),
);
$rule->run($path);
DESCRIPTIONRules of this class match the metadata portion of a path. ATTRIBUTESfieldThe metadata field/key name. matcherA Path::Dispatcher::Rule object for matching against the value of the field. SUPPORTBugs may be submitted through the RT bug tracker <https://rt.cpan.org/Public/Dist/Display.html?Name=Path-Dispatcher> (or bug-Path-Dispatcher@rt.cpan.org <mailto:bug-Path-Dispatcher@rt.cpan.org>). AUTHORShawn M Moore, "<sartak at bestpractical.com>" COPYRIGHT AND LICENSEThis software is copyright (c) 2020 by Shawn M Moore. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|