Skip to content

Commit

Permalink
Remove form_action restrictions for ouath2_authorizations#create
Browse files Browse the repository at this point in the history
Fixes #3424
  • Loading branch information
tomhughes committed Jan 17, 2022
1 parent 2a82bd1 commit 707ebdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ Rails/HelperInstanceVariable:
Rails/LexicallyScopedActionFilter:
Exclude:
- 'app/controllers/oauth2_applications_controller.rb'
- 'app/controllers/oauth2_authorizations_controller.rb'

# Offense count: 5
# Configuration parameters: Include.
Expand Down
7 changes: 4 additions & 3 deletions app/controllers/oauth2_authorizations_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ class Oauth2AuthorizationsController < Doorkeeper::AuthorizationsController

prepend_before_action :authorize_web
before_action :set_locale
before_action :allow_all_form_action, :only => [:new, :create]

authorize_resource :class => false

def new
override_content_security_policy_directives(:form_action => []) if Settings.csp_enforce || Settings.key?(:csp_report_url)
private

super
def allow_all_form_action
override_content_security_policy_directives(:form_action => []) if Settings.csp_enforce || Settings.key?(:csp_report_url)
end
end

0 comments on commit 707ebdd

Please sign in to comment.