Skip to content

Commit

Permalink
Improve YARD doc for redacted_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines committed Oct 5, 2021
1 parent 358f381 commit 383c808
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/bugsnag/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,13 @@ class Configuration
# @return [Set<String, Regexp>]
attr_accessor :meta_data_filters

# A list of keys that should be redacted from the report and breadcrumb
# A set of keys that should be redacted from the report and breadcrumb
# metadata before sending them to Bugsnag
#
# When adding strings, keys that are equal to the string (ignoring case)
# will be redacted. When adding regular expressions, any keys which match
# the regular expression will be redacted
#
# @return [Set<String, Regexp>]
attr_accessor :redacted_keys

Expand Down

0 comments on commit 383c808

Please sign in to comment.