Post

olon.http.rest.RestHelper.Post
protected object Post

An extractor that tests the request to see if it's a POST and if it is, the path and the request are extracted. It can be used as:

case
"api" :: id :: _ Post req => ...


or

case Post("api"
:: id :: _, req) => ...

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Post.type

Members list

Value members

Concrete methods

def unapply(r: Req): Option[(List[String], Req)]