Browse Source

fix: Added `name` and `platform` to projects for the Setup Wizard (#70130)

Stefan Jandl 10 months ago
parent
commit
8e4dc08a24
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/sentry/web/frontend/setup_wizard.py

+ 2 - 0
src/sentry/web/frontend/setup_wizard.py

@@ -123,6 +123,8 @@ class SetupWizardView(BaseView):
                 enriched_project = {
                     "slug": project.slug,
                     "id": project.id,
+                    "name": project.name,
+                    "platform": project.platform,
                     "status": STATUS_LABELS.get(project.status, "unknown"),
                 }
                 # The wizard only reads the a few fields so serializing the mapping should work fine