mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
Allow OPTIONS requests when CORS is enabled
This commit is contained in:
parent
0b62730382
commit
963b08f063
|
@ -8,7 +8,17 @@ if GlobalSetting.enable_cors
|
|||
end
|
||||
|
||||
def call(env)
|
||||
if env['REQUEST_METHOD'] == 'OPTIONS' and env['HTTP_ACCESS_CONTROL_REQUEST_METHOD']
|
||||
return [200, apply_headers(env), []]
|
||||
end
|
||||
|
||||
status, headers, body = @app.call(env)
|
||||
[status, apply_headers(env, headers), body]
|
||||
end
|
||||
|
||||
def apply_headers(env, headers=nil)
|
||||
headers ||= {}
|
||||
|
||||
origin = nil
|
||||
cors_origins = @global_origins || []
|
||||
cors_origins += SiteSetting.cors_origins.split('|') if SiteSetting.cors_origins
|
||||
|
@ -22,7 +32,7 @@ if GlobalSetting.enable_cors
|
|||
headers['Access-Control-Allow-Credentials'] = "true"
|
||||
end
|
||||
|
||||
[status,headers,body]
|
||||
headers
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user