difficulty: noviceeffort: mediumhelp wanted
Metriche repository
- Star
- (1437 star)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
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()
}