Browse Source

feat(escalating-issues): Add escalating groupinbox reason (#45964)

## Objective:

Create new enum `escalating` for GroupInboxReason
NisanthanNanthakumar 2 years ago
parent
commit
960298989c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/sentry/models/groupinbox.py

+ 1 - 0
src/sentry/models/groupinbox.py

@@ -31,6 +31,7 @@ class GroupInboxReason(Enum):
     REGRESSION = 2
     MANUAL = 3
     REPROCESSED = 4
+    ESCALATING = 5
 
 
 class GroupInboxRemoveAction(Enum):