2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 19:23:47 +00:00
|
|
|
|
2016-04-05 02:12:12 +00:00
|
|
|
Rails.application.config.middleware.insert_before 0, Rack::Cors do
|
|
|
|
allow do
|
|
|
|
origins '*'
|
2016-04-06 12:09:25 +00:00
|
|
|
resource '/api/*',
|
2016-07-26 00:14:23 +00:00
|
|
|
headers: :any,
|
2017-11-25 19:23:47 +00:00
|
|
|
methods: %i(get post put delete options head)
|
2016-04-05 02:12:12 +00:00
|
|
|
end
|
|
|
|
end
|