Subject: | HTTP::Server::Simple doesn't let PUT or DELETE |
Hey Jesse, I want to PUT and DELETE to an HTTP::Server::Simple, but I get stopped in
_process_request at line 298:
if ( $method !~ /^(?:GET|POST|HEAD)$/ ) {
$self->bad_request;
return;
}
any reason not to:
if ( $method !~ /^(?:GET|POST|HEAD|PUT|DELETE)$/ ) {
$self->bad_request;
return;
}
Thanks.