1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Fix Psych::DisallowedClass exception when loading plugin settings saved with Rails 4.2 (#37452, #37719).

Patch by Alexander Meindl.


git-svn-id: https://svn.redmine.org/redmine/trunk@21863 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2022-09-28 06:36:07 +00:00
parent 3179bee5a8
commit 6a039db086

View File

@ -34,7 +34,8 @@ module RedmineApp
config.active_record.default_timezone = :local
config.active_record.yaml_column_permitted_classes = [
Symbol,
ActiveSupport::HashWithIndifferentAccess
ActiveSupport::HashWithIndifferentAccess,
ActionController::Parameters
]
config.action_mailer.delivery_job = "ActionMailer::MailDeliveryJob"