From 6acfa98121b9b05783465efb99558949a407b4ce Mon Sep 17 00:00:00 2001 From: Will Sheldon <114631109+wssheldon@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:19:48 -0400 Subject: [PATCH] bugfix: case participants added to incidents should be participant role not observer (#4881) --- src/dispatch/participant_role/enums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/participant_role/enums.py b/src/dispatch/participant_role/enums.py index 4c28c259833b..0a4898373903 100644 --- a/src/dispatch/participant_role/enums.py +++ b/src/dispatch/participant_role/enums.py @@ -25,4 +25,4 @@ def map_case_role_to_incident_role( if role.role in role_mapping: return role_mapping[role.role] - return cls.observer + return cls.participant