Browse Source

Expose Link headers via CORS

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
ff49649130
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      config/application.rb

+ 1
- 1
config/application.rb View File

@ -34,7 +34,7 @@ module Mastodon
allow do
origins '*'
resource '/api/*', headers: :any, methods: [:post, :put, :delete, :get, :options], credentials: false
resource '/api/*', headers: :any, methods: [:post, :put, :delete, :get, :options], credentials: false, expose: ['Link', 'X-RateLimit-Reset', 'X-RateLimit-Limit', 'X-RateLimit-Remaining', 'X-Request-Id']
resource '/oauth/token', headers: :any, methods: [:post], credentials: false
end
end

Loading…
Cancel
Save