1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/myapp/config/initializers/wrap_parameters.rb

15 lines
485 B
Ruby
Raw Normal View History

# Be sure to restart your server when you modify this file.
2015-09-30 19:16:06 -04:00
# This file contains settings for ActionController::ParamsWrapper which
# is enabled by default.
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
ActiveSupport.on_load(:action_controller) do
2018-06-21 14:14:54 -04:00
wrap_parameters format: [:json]
end
2015-09-30 19:16:06 -04:00
# To enable root element in JSON for ActiveRecord objects.
# ActiveSupport.on_load(:active_record) do
2018-06-21 14:14:54 -04:00
# self.include_root_in_json = true
2015-09-30 19:16:06 -04:00
# end