Created
November 5, 2024 11:58
-
-
Save stympy/868853ed163ef1cc17f6e3b790420135 to your computer and use it in GitHub Desktop.
Add controller data to process_action.action_controller events sent to Insights
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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