Browse Source

chore(data-consent): Add prompt features (#67639)

this pr adds in the prompt features for the data consent banner/feature
specific entry points
Richard Roggenkemper 11 months ago
parent
commit
25a2f78850
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/sentry/utils/prompts.py

+ 2 - 0
src/sentry/utils/prompts.py

@@ -17,6 +17,8 @@ DEFAULT_PROMPTS = {
     "codecov_stacktrace_prompt": {"required_fields": ["organization_id", "project_id"]},
     "metric_alert_ignore_archived_issues": {"required_fields": ["organization_id", "project_id"]},
     "issue_priority": {"required_fields": ["organization_id"]},
+    "data_consent_banner": {"required_fields": ["organization_id"]},
+    "data_consent_feature_specific": {"required_fields": ["organization_id"]},
 }