You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# For more documentation see:
# https://rollbar.com/docs/notifier/rollbar-gem/#person-tracking
# In Rails, Rollbar will automatically call the `current_user` method
# on the controller. The method name can be overridden in the Rollbar
# configuration:
Rollbar.configure do |config|
config.person_method = 'current_user_override'
end
# The returned object should have `id`, `email`, and `username`
# methods. These method names can be overridden in the Rollbar
# configuration:
Rollbar.configure do |config|
config.person_id_method = 'get_id'
config.person_username_method = 'get_username'
config.person_email_method = 'primary_email'
end
# If you are *not* using Rails, Rollbar will automatically pick up
# the `rollbar.person_data` key in the Rack environment and pass it
# on to the Rollbar website. It *must* have at least an `id` field.
# `username` and `email` will also be treated specially.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: