From 487a45630ed9dfd03d99287ee99b64688f719bbd Mon Sep 17 00:00:00 2001 From: Roman Zavarnitsyn Date: Wed, 8 Apr 2026 18:18:17 +0200 Subject: [PATCH] feat(prompts): Register android tombstones onboarding prompt Register the `issue_android_tombstones_onboarding` prompt in the prompts config so the frontend can use the prompts-activity API to track dismiss/snooze state for the tombstones onboarding banner. Scoped per organization and project. Co-Authored-By: Claude Opus 4.6 --- src/sentry/utils/prompts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sentry/utils/prompts.py b/src/sentry/utils/prompts.py index 2012ad60855140..e49af020bbda45 100644 --- a/src/sentry/utils/prompts.py +++ b/src/sentry/utils/prompts.py @@ -15,6 +15,7 @@ class _PromptConfig(TypedDict): "data_consent_banner": {"required_fields": ["organization_id"]}, "data_consent_priority": {"required_fields": ["organization_id"]}, "github_missing_members": {"required_fields": ["organization_id"]}, + "issue_android_tombstones_onboarding": {"required_fields": ["organization_id", "project_id"]}, "issue_feedback_hidden": {"required_fields": ["organization_id", "project_id"]}, "issue_priority": {"required_fields": ["organization_id"]}, "issue_replay_inline_onboarding": {"required_fields": ["organization_id", "project_id"]},