Skip to content

ref(quick-start): Remove 'USER_REPORTS' from onboarding task #83490

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sentry/models/organizationonboardingtask.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from sentry.db.models.manager.base import BaseManager


# NOTE: There are gaps in the numberation because a
# few tasks were removed as they are no longer used in the quick start sidebar
class OnboardingTask:
FIRST_PROJECT = 1
FIRST_EVENT = 2
Expand All @@ -28,7 +30,6 @@ class OnboardingTask:
USER_CONTEXT = 5
RELEASE_TRACKING = 6
SOURCEMAPS = 7
USER_REPORTS = 8
ISSUE_TRACKER = 9
ALERT_RULE = 10
FIRST_TRANSACTION = 11
Expand Down Expand Up @@ -128,7 +129,6 @@ class OrganizationOnboardingTask(AbstractOnboardingTask):
(OnboardingTask.USER_CONTEXT, "setup_user_context"),
(OnboardingTask.RELEASE_TRACKING, "setup_release_tracking"),
(OnboardingTask.SOURCEMAPS, "setup_sourcemaps"),
(OnboardingTask.USER_REPORTS, "setup_user_reports"),
# TODO(Telemety Experience): This task is no longer shown
# in the new experience and shall remove it from code
(OnboardingTask.ISSUE_TRACKER, "setup_issue_tracker"),
Expand Down
Loading