diff --git a/src/dispatch/plugins/dispatch_slack/incident/interactive.py b/src/dispatch/plugins/dispatch_slack/incident/interactive.py index e8d6cf47dfab..253fd6e6f993 100644 --- a/src/dispatch/plugins/dispatch_slack/incident/interactive.py +++ b/src/dispatch/plugins/dispatch_slack/incident/interactive.py @@ -491,6 +491,12 @@ def handle_list_participants_command( f"*Team*\n {participant_team}, {participant_department}", f"*Location* \n{participant_location}", f"*Incident Role(s)* \n{(', ').join(participant_roles)}", + f"*Added By* \n{participant.added_by.individual.name}" + if participant.added_by + else "*Added By* \nUnknown", + f"*Added Reason* \n{participant.added_reason}" + if participant.added_reason + else "*Added Reason* \nUnknown", ], accessory=accessory, ),