add DELETE to Access-Control-Allow-Methods

pull/9365/head
Niklas Fiekas 2021-07-07 12:54:36 +02:00
parent dc024d4e61
commit a367780a0a
1 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,5 @@ object ResponseHeaders {
)
}
val allowMethods = List("OPTIONS", "GET", "POST") mkString ", "
val allowMethods = List("OPTIONS", "GET", "POST", "DELETE") mkString ", "
}