Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PRI method #3438

Merged
merged 1 commit into from May 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/src/main/scala/org/http4s/Method.scala
Expand Up @@ -94,6 +94,7 @@ object Method {
val ORDERPATCH: IdempotentMethod = new Method("ORDERPATCH") with Idempotent
val PATCH: DefaultMethodWithBody = new Method("PATCH") with Default with PermitsBody
val POST: DefaultMethodWithBody = new Method("POST") with Default with PermitsBody
val PRI: SafeMethod = new Method("PRI") with Safe
val PROPFIND: SafeMethod = new Method("PROPFIND") with Safe
val PROPPATCH: IdempotentMethod = new Method("PROPPATCH") with Idempotent
val PUT: IdempotentMethodWithBody = new Method("PUT") with Idempotent with PermitsBody
Expand Down Expand Up @@ -134,6 +135,7 @@ object Method {
ORDERPATCH,
PATCH,
POST,
PRI,
PROPFIND,
PROPPATCH,
PUT,
Expand Down