b732aff523
(I have no idea what I'm doing)
8 lines
198 B
Ruby
8 lines
198 B
Ruby
class Api::ApplicationController < ::ApplicationController
|
|
def set_access_control_headers
|
|
if request.format.json?
|
|
response.headers['Access-Control-Allow-Origin'] = '*'
|
|
end
|
|
end
|
|
end
|