]> git.openstreetmap.org Git - rails.git/commitdiff
Configure CORS to allow GET and POST to /oauth
authorTom Hughes <tom@compton.nu>
Fri, 16 Nov 2012 22:28:52 +0000 (22:28 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 16 Nov 2012 22:28:52 +0000 (22:28 +0000)
config/initializers/cors.rb

index 6fbeb916127e9117bfd3363f419013fdb4747410..9bbf937cfef24cc0493251c971fd918377434001 100644 (file)
@@ -8,6 +8,7 @@ require "rack/cors"
 Rails.configuration.middleware.use Rack::Cors do
   allow do
     origins "*"
+    resource "/oauth/*", :headers => :any, :methods => [:get, :post]
     resource "/api/*", :headers => :any, :methods => [:get, :post, :put, :delete]
   end
 end