Fix OAuth flow being broken by recent CSP change (#20958)

master
Claire 2022-11-17 21:31:52 +01:00 committed by GitHub
parent 231e3ec552
commit 4ae97a2e4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController
before_action :authenticate_resource_owner!
before_action :set_cache_headers
content_security_policy do |p|
p.form_action(false)
end
include Localized
private