From ff995e7ea321456036a81cc4a6e9ffad91afd7b0 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 17 Jan 2022 11:00:41 +0000 Subject: [PATCH] Restore form_action restrictions for ouath2_authorizations#create --- app/controllers/oauth2_authorizations_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/oauth2_authorizations_controller.rb b/app/controllers/oauth2_authorizations_controller.rb index 54a63fc84..dca95de4e 100644 --- a/app/controllers/oauth2_authorizations_controller.rb +++ b/app/controllers/oauth2_authorizations_controller.rb @@ -3,7 +3,7 @@ class Oauth2AuthorizationsController < Doorkeeper::AuthorizationsController prepend_before_action :authorize_web before_action :set_locale - before_action :allow_all_form_action, :only => [:new, :create] + before_action :allow_all_form_action, :only => [:new] authorize_resource :class => false -- 2.39.5