Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/dispatch/plugins/dispatch_slack/incident/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
Expand Down