Allow POST /oauth/revoke through CORS (#31743)

This commit is contained in:
Claire 2024-09-04 12:46:28 +02:00 committed by GitHub
parent 36710aec8b
commit ee55d20fd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,6 +22,7 @@ Rails.application.config.middleware.insert_before 0, Rack::Cors do
expose: %w(Link X-RateLimit-Reset X-RateLimit-Limit X-RateLimit-Remaining X-Request-Id),
methods: %i(post put delete get patch options)
resource '/oauth/token', methods: [:post]
resource '/oauth/revoke', methods: [:post]
end
end
end