The code powering m.abunchtell.com https://m.abunchtell.com
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

27 рядки
804 B

  1. # Be sure to restart your server when you modify this file.
  2. # Avoid CORS issues when API is called from the frontend app.
  3. # Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin AJAX requests.
  4. # Read more: https://github.com/cyu/rack-cors
  5. Rails.application.config.middleware.insert_before 0, Rack::Cors do
  6. allow do
  7. origins '*'
  8. resource '/@:username',
  9. headers: :any,
  10. methods: [:get],
  11. credentials: false
  12. resource '/api/*',
  13. headers: :any,
  14. methods: [:post, :put, :delete, :get, :patch, :options],
  15. credentials: false,
  16. expose: ['Link', 'X-RateLimit-Reset', 'X-RateLimit-Limit', 'X-RateLimit-Remaining', 'X-Request-Id']
  17. resource '/oauth/token',
  18. headers: :any,
  19. methods: [:post],
  20. credentials: false
  21. end
  22. end