diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2018-02-09 17:27:01 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2018-02-14 13:10:08 -0500 |
commit | a5f7357a3dff2617ba13a274feb8d8ac2492f26a (patch) | |
tree | 0f1674dd837b9ac8d6027c906be8111dd340ef96 /guides/source | |
parent | 2fe467091b3743627d52a3e2ae357f0b5fd6d157 (diff) | |
download | rails-a5f7357a3dff2617ba13a274feb8d8ac2492f26a.tar.gz rails-a5f7357a3dff2617ba13a274feb8d8ac2492f26a.tar.bz2 rails-a5f7357a3dff2617ba13a274feb8d8ac2492f26a.zip |
Add configuration to set custom serializers
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index b0f39e7ab5..fd747c1686 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -741,6 +741,8 @@ There are a few configuration options available in Active Support: * `config.active_job.logger` accepts a logger conforming to the interface of Log4r or the default Ruby Logger class, which is then used to log information from Active Job. You can retrieve this logger by calling `logger` on either an Active Job class or an Active Job instance. Set to `nil` to disable logging. +* `config.active_job.custom_serializers` allows to set custom argument serializers. Defaults to `[]`. + ### Configuring Action Cable * `config.action_cable.url` accepts a string for the URL for where |