|
295 | 295 | from sentry.notifications.api.endpoints.user_notification_settings_providers import (
|
296 | 296 | UserNotificationSettingsProvidersEndpoint,
|
297 | 297 | )
|
298 |
| -from sentry.preprod.api.endpoints.organization_preprod_artifact_assemble import ( |
299 |
| - ProjectPreprodArtifactAssembleEndpoint, |
300 |
| -) |
| 298 | +from sentry.preprod.api.endpoints.urls import preprod_urls |
301 | 299 | from sentry.relocation.api.endpoints.abort import RelocationAbortEndpoint
|
302 | 300 | from sentry.relocation.api.endpoints.artifacts.details import RelocationArtifactDetailsEndpoint
|
303 | 301 | from sentry.relocation.api.endpoints.artifacts.index import RelocationArtifactIndexEndpoint
|
@@ -2523,11 +2521,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
|
2523 | 2521 | DifAssembleEndpoint.as_view(),
|
2524 | 2522 | name="sentry-api-0-assemble-dif-files",
|
2525 | 2523 | ),
|
2526 |
| - re_path( |
2527 |
| - r"^(?P<organization_id_or_slug>[^/]+)/(?P<project_id_or_slug>[^/]+)/files/preprodartifacts/assemble/$", |
2528 |
| - ProjectPreprodArtifactAssembleEndpoint.as_view(), |
2529 |
| - name="sentry-api-0-assemble-preprod-artifact-files", |
2530 |
| - ), |
2531 | 2524 | re_path(
|
2532 | 2525 | r"^(?P<organization_id_or_slug>[^/]+)/(?P<project_id_or_slug>[^/]+)/files/dsyms/unknown/$",
|
2533 | 2526 | UnknownDebugFilesEndpoint.as_view(),
|
@@ -2992,6 +2985,7 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
|
2992 | 2985 | ProjectSeerPreferencesEndpoint.as_view(),
|
2993 | 2986 | name="sentry-api-0-project-seer-preferences",
|
2994 | 2987 | ),
|
| 2988 | + *preprod_urls.preprod_urlpatterns, |
2995 | 2989 | ]
|
2996 | 2990 |
|
2997 | 2991 | TEAM_URLS = [
|
|
0 commit comments