Skip to content

Instantly share code, notes, and snippets.

@speed-of-light
Created August 27, 2014 05:10
Show Gist options
  • Select an option

  • Save speed-of-light/7856bf9eb1b918b4ccc3 to your computer and use it in GitHub Desktop.

Select an option

Save speed-of-light/7856bf9eb1b918b4ccc3 to your computer and use it in GitHub Desktop.
Rails 4 cors in app
# config/appliciation.rb
# for wide open public api
config.action_dispatch.default_headers.merge!({
"Access-Control-Allow-Origin" => "*"
"Access-Control-Request-Method" => "*"
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment