From ea60a63badc84a30bc91c8a21e8dfc39a9f040ff Mon Sep 17 00:00:00 2001 From: Will Sheldon <114631109+wssheldon@users.noreply.github.com> Date: Wed, 26 Jun 2024 11:06:28 -0700 Subject: [PATCH] bugfix: case participants added to incidents should be participant role not observer --- 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