|
21 | 21 | from sentry.api.endpoints.organization_missing_org_members import OrganizationMissingMembersEndpoint
|
22 | 22 | from sentry.api.endpoints.organization_plugins_configs import OrganizationPluginsConfigsEndpoint
|
23 | 23 | from sentry.api.endpoints.organization_plugins_index import OrganizationPluginsEndpoint
|
| 24 | +from sentry.api.endpoints.organization_releases import ( |
| 25 | + OrganizationReleasesEndpoint, |
| 26 | + OrganizationReleasesStatsEndpoint, |
| 27 | +) |
24 | 28 | from sentry.api.endpoints.organization_sampling_admin_metrics import (
|
25 | 29 | OrganizationDynamicSamplingAdminMetricsEndpoint,
|
26 | 30 | )
|
|
371 | 375 | UserNotificationSettingsProvidersEndpoint,
|
372 | 376 | )
|
373 | 377 | from sentry.preprod.api.endpoints import urls as preprod_urls
|
| 378 | +from sentry.releases.endpoints.organization_release_assemble import ( |
| 379 | + OrganizationReleaseAssembleEndpoint, |
| 380 | +) |
| 381 | +from sentry.releases.endpoints.organization_release_commits import ( |
| 382 | + OrganizationReleaseCommitsEndpoint, |
| 383 | +) |
| 384 | +from sentry.releases.endpoints.organization_release_details import ( |
| 385 | + OrganizationReleaseDetailsEndpoint, |
| 386 | +) |
| 387 | +from sentry.releases.endpoints.organization_release_file_details import ( |
| 388 | + OrganizationReleaseFileDetailsEndpoint, |
| 389 | +) |
| 390 | +from sentry.releases.endpoints.organization_release_files import OrganizationReleaseFilesEndpoint |
| 391 | +from sentry.releases.endpoints.organization_release_health_data import ( |
| 392 | + OrganizationReleaseHealthDataEndpoint, |
| 393 | +) |
| 394 | +from sentry.releases.endpoints.organization_release_meta import OrganizationReleaseMetaEndpoint |
| 395 | +from sentry.releases.endpoints.project_release_commits import ProjectReleaseCommitsEndpoint |
| 396 | +from sentry.releases.endpoints.project_release_details import ProjectReleaseDetailsEndpoint |
| 397 | +from sentry.releases.endpoints.project_release_file_details import ProjectReleaseFileDetailsEndpoint |
| 398 | +from sentry.releases.endpoints.project_release_files import ProjectReleaseFilesEndpoint |
| 399 | +from sentry.releases.endpoints.project_release_repositories import ProjectReleaseRepositories |
| 400 | +from sentry.releases.endpoints.project_release_setup import ProjectReleaseSetupCompletionEndpoint |
| 401 | +from sentry.releases.endpoints.project_release_stats import ProjectReleaseStatsEndpoint |
| 402 | +from sentry.releases.endpoints.project_releases import ProjectReleasesEndpoint |
| 403 | +from sentry.releases.endpoints.project_releases_token import ProjectReleasesTokenEndpoint |
| 404 | +from sentry.releases.endpoints.release_deploys import ReleaseDeploysEndpoint |
374 | 405 | from sentry.relocation.api.endpoints.abort import RelocationAbortEndpoint
|
375 | 406 | from sentry.relocation.api.endpoints.artifacts.details import RelocationArtifactDetailsEndpoint
|
376 | 407 | from sentry.relocation.api.endpoints.artifacts.index import RelocationArtifactIndexEndpoint
|
|
658 | 689 | )
|
659 | 690 | from .endpoints.organization_recent_searches import OrganizationRecentSearchesEndpoint
|
660 | 691 | from .endpoints.organization_relay_usage import OrganizationRelayUsage
|
661 |
| -from .endpoints.organization_release_assemble import OrganizationReleaseAssembleEndpoint |
662 |
| -from .endpoints.organization_release_commits import OrganizationReleaseCommitsEndpoint |
663 |
| -from .endpoints.organization_release_details import OrganizationReleaseDetailsEndpoint |
664 |
| -from .endpoints.organization_release_file_details import OrganizationReleaseFileDetailsEndpoint |
665 |
| -from .endpoints.organization_release_files import OrganizationReleaseFilesEndpoint |
666 |
| -from .endpoints.organization_release_health_data import OrganizationReleaseHealthDataEndpoint |
667 |
| -from .endpoints.organization_release_meta import OrganizationReleaseMetaEndpoint |
668 |
| -from .endpoints.organization_releases import ( |
669 |
| - OrganizationReleasesEndpoint, |
670 |
| - OrganizationReleasesStatsEndpoint, |
671 |
| -) |
672 | 692 | from .endpoints.organization_sampling_project_rates import OrganizationSamplingProjectRatesEndpoint
|
673 | 693 | from .endpoints.organization_sdk_deprecations import OrganizationSdkDeprecationsEndpoint
|
674 | 694 | from .endpoints.organization_sdk_updates import (
|
|
712 | 732 | ProjectProfilingRawChunkEndpoint,
|
713 | 733 | ProjectProfilingRawProfileEndpoint,
|
714 | 734 | )
|
715 |
| -from .endpoints.project_release_commits import ProjectReleaseCommitsEndpoint |
716 |
| -from .endpoints.project_release_details import ProjectReleaseDetailsEndpoint |
717 |
| -from .endpoints.project_release_file_details import ProjectReleaseFileDetailsEndpoint |
718 |
| -from .endpoints.project_release_files import ProjectReleaseFilesEndpoint |
719 |
| -from .endpoints.project_release_repositories import ProjectReleaseRepositories |
720 |
| -from .endpoints.project_release_setup import ProjectReleaseSetupCompletionEndpoint |
721 |
| -from .endpoints.project_release_stats import ProjectReleaseStatsEndpoint |
722 |
| -from .endpoints.project_releases import ProjectReleasesEndpoint |
723 |
| -from .endpoints.project_releases_token import ProjectReleasesTokenEndpoint |
724 | 735 | from .endpoints.project_repo_path_parsing import ProjectRepoPathParsingEndpoint
|
725 | 736 | from .endpoints.project_reprocessing import ProjectReprocessingEndpoint
|
726 | 737 | from .endpoints.project_rule_actions import ProjectRuleActionsEndpoint
|
|
755 | 766 | RelayRegisterChallengeEndpoint,
|
756 | 767 | RelayRegisterResponseEndpoint,
|
757 | 768 | )
|
758 |
| -from .endpoints.release_deploys import ReleaseDeploysEndpoint |
759 | 769 | from .endpoints.rule_snooze import MetricRuleSnoozeEndpoint, RuleSnoozeEndpoint
|
760 | 770 | from .endpoints.setup_wizard import SetupWizard
|
761 | 771 | from .endpoints.system_health import SystemHealthEndpoint
|
|
0 commit comments