Browse Source

ref(sentry apps): Add ignored to list of issue webhooks (#32371)

Colleen O'Rourke 3 years ago
parent
commit
f5dea90a96

+ 1 - 1
static/app/views/settings/organizationDeveloperSettings/constants.tsx

@@ -1,7 +1,7 @@
 export const EVENT_CHOICES = ['issue', 'error', 'comment'] as const;
 
 export const DESCRIPTIONS = {
-  issue: 'created, resolved, assigned',
+  issue: 'created, resolved, assigned, ignored',
   error: 'created',
   comment: 'created, edited, deleted',
 } as const;