difficulty: noviceeffort: mediumhelp wanted
Métricas do repositório
- Stars
- (1.437 stars)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description
The filter mentioned in #143 works for GET requests, but is not active for DELETE. When I convert my DELETE to a (misnomed) GET, everything is fine.
#* @filter cors
cors <- function(res) {
res$setHeader("Access-Control-Allow-Origin", "*")
plumber::forward()
}