File tree 2 files changed +5
-5
lines changed
onboarding_tasks/backends
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ class OrganizationOnboardingTask(AbstractOnboardingTask):
142
142
143
143
# Tasks which should be completed for the onboarding to be considered
144
144
# complete.
145
- NEW_REQUIRED_ONBOARDING_TASKS = frozenset (
145
+ REQUIRED_ONBOARDING_TASKS = frozenset (
146
146
[
147
147
OnboardingTask .FIRST_PROJECT ,
148
148
OnboardingTask .FIRST_EVENT ,
@@ -157,9 +157,9 @@ class OrganizationOnboardingTask(AbstractOnboardingTask):
157
157
]
158
158
)
159
159
160
- NEW_REQUIRED_ONBOARDING_TASKS_WITH_SOURCE_MAPS = frozenset (
160
+ REQUIRED_ONBOARDING_TASKS_WITH_SOURCE_MAPS = frozenset (
161
161
[
162
- * NEW_REQUIRED_ONBOARDING_TASKS ,
162
+ * REQUIRED_ONBOARDING_TASKS ,
163
163
OnboardingTask .SOURCEMAPS ,
164
164
]
165
165
)
Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ def try_mark_onboarding_complete(
56
56
# It's possible that the first project doesn't have source maps,
57
57
# but the second project (which users are guided to create in the "Add Sentry to other parts of the app" step) may have source maps.
58
58
required_tasks = (
59
- OrganizationOnboardingTask .NEW_REQUIRED_ONBOARDING_TASKS_WITH_SOURCE_MAPS
59
+ OrganizationOnboardingTask .REQUIRED_ONBOARDING_TASKS_WITH_SOURCE_MAPS
60
60
if project_with_source_maps
61
- else OrganizationOnboardingTask .NEW_REQUIRED_ONBOARDING_TASKS
61
+ else OrganizationOnboardingTask .REQUIRED_ONBOARDING_TASKS
62
62
)
63
63
64
64
if completed >= required_tasks :
You can’t perform that action at this time.
0 commit comments