2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
#
|
|
|
|
# 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.
|
2023-01-07 05:59:28 -06:00
|
|
|
ActiveSupport.on_load(:action_controller) { wrap_parameters format: [:json] }
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
# Disable root element in JSON by default.
|
2023-01-07 05:59:28 -06:00
|
|
|
ActiveSupport.on_load(:active_record) { self.include_root_in_json = false }
|