it's not possible to filter all POST and PUT requests. the easy way to make this happen is to treat all filters of the same field as ORs, so `method:POST` `method:PUT` behaves like `method:(PUT|POST)`.
it's not possible to filter all POST and PUT requests.
the easy way to make this happen is to treat all filters of the same field as ORs, so
method:POSTmethod:PUTbehaves likemethod:(PUT|POST).