Skip to content

Instantly share code, notes, and snippets.

@stympy
Created November 5, 2024 11:58
Show Gist options
  • Save stympy/868853ed163ef1cc17f6e3b790420135 to your computer and use it in GitHub Desktop.
Save stympy/868853ed163ef1cc17f6e3b790420135 to your computer and use it in GitHub Desktop.
Add controller data to process_action.action_controller events sent to Insights
class ApplicationController < ActionController::Base
# ...
private
def append_info_to_payload(payload)
super
payload[:user_id] = current_user&.id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment