Does Sinatra support the OPTIONS HTTP verb? Something like:
options '/' do
response.headers["Access-Control-Allow-Origin"] = "*"
response.headers["Access-Control-Allow-Methods"] = "POST"
halt 200
end
|
Does Sinatra support the OPTIONS HTTP verb? Something like:
|
|||
|
|
|
After a bit of hacking I managed to get it working using:
Edit: After some more looking around on this issue, I realized that a PULL request is up on GitHub for the addition of the
Now I can simply use:
|
||||
|
|
|
No it does not. If you look at the code on GitHub you can see where the HTTP verbs are defined, and |
|||||||||
|
|
Yes, already does it Sinatra Routes documentation |
|||
|
|