net.liftweb.http.rest.RestHelper
An extractor that tests the request to see if it's a PATCH and if it is, the path and the request are extracted. It can be used as:
case "api" :: id :: _ Patch req => ...
case Patch("api" :: id :: _, req) => ...
case Patch("api" :: id :: _, req) => ... case "api" :: id :: _ Patch req => ... or
An extractor that tests the request to see if it's a PATCH and if it is, the path and the request are extracted. It can be used as:
or
case Patch("api" :: id :: _, req) => ...case Patch("api" :: id :: _, req) => ... case "api" :: id :: _ Patch req => ... or
case Patch("api" :: id :: _, req) => ...case Patch("api" :: id :: _, req) => ...