When using on_request in a resource, the default options header will reply with an empty allow header.
This is wrong since the spec says:
An empty Allow value indicates that the resource allows no request methods, which might occur temporarily for a given resource.
sadly there does not seem to be a * to indicate all methods, but we can likely use the COMBINED_METHODS list in that case.
When using
on_requestin a resource, the default options header will reply with an empty allow header.This is wrong since the spec says:
sadly there does not seem to be a
*to indicate all methods, but we can likely use the COMBINED_METHODS list in that case.