Subject: | Matched parameters? |
I'd like to know which cgi parameters we added by routes
( so I can eliminate them from a self referencing url. )
In a local sub class I have the following:
sub routes_params{
my ($self) = shift;
if ( @_ ){
$self->{'Application::Plugin::Routes::__routes_params'} = [ @_ ];
}
return $self->{'Application::Plugin::Routes::__routes_params'}
}
and in routes_parse I
added $self->route_params( @names );
at line 102