diff --git a/src/sentry/api/endpoints/release_thresholds/__init__.py b/src/sentry/api/endpoints/release_thresholds/__init__.py new file mode 100644 index 00000000000000..e69de29bb2d1d6 diff --git a/src/sentry/api/endpoints/release_threshold.py b/src/sentry/api/endpoints/release_thresholds/release_threshold.py similarity index 100% rename from src/sentry/api/endpoints/release_threshold.py rename to src/sentry/api/endpoints/release_thresholds/release_threshold.py diff --git a/src/sentry/api/endpoints/release_threshold_details.py b/src/sentry/api/endpoints/release_thresholds/release_threshold_details.py similarity index 100% rename from src/sentry/api/endpoints/release_threshold_details.py rename to src/sentry/api/endpoints/release_thresholds/release_threshold_details.py diff --git a/src/sentry/api/endpoints/release_threshold_status_index.py b/src/sentry/api/endpoints/release_thresholds/release_threshold_status_index.py similarity index 100% rename from src/sentry/api/endpoints/release_threshold_status_index.py rename to src/sentry/api/endpoints/release_thresholds/release_threshold_status_index.py diff --git a/src/sentry/api/urls.py b/src/sentry/api/urls.py index 1109b73a36b3ad..2471efd6304d09 100644 --- a/src/sentry/api/urls.py +++ b/src/sentry/api/urls.py @@ -22,9 +22,13 @@ OrganizationProjectsExperimentEndpoint, ) from sentry.api.endpoints.organization_spans_aggregation import OrganizationSpansAggregationEndpoint -from sentry.api.endpoints.release_threshold import ReleaseThresholdEndpoint -from sentry.api.endpoints.release_threshold_details import ReleaseThresholdDetailsEndpoint -from sentry.api.endpoints.release_threshold_status_index import ReleaseThresholdStatusIndexEndpoint +from sentry.api.endpoints.release_thresholds.release_threshold import ReleaseThresholdEndpoint +from sentry.api.endpoints.release_thresholds.release_threshold_details import ( + ReleaseThresholdDetailsEndpoint, +) +from sentry.api.endpoints.release_thresholds.release_threshold_status_index import ( + ReleaseThresholdStatusIndexEndpoint, +) from sentry.api.endpoints.source_map_debug_blue_thunder_edition import ( SourceMapDebugBlueThunderEditionEndpoint, ) diff --git a/tests/sentry/api/endpoints/release_thresholds/__init__.py b/tests/sentry/api/endpoints/release_thresholds/__init__.py new file mode 100644 index 00000000000000..e69de29bb2d1d6 diff --git a/tests/sentry/api/endpoints/test_release_threshold.py b/tests/sentry/api/endpoints/release_thresholds/test_release_threshold.py similarity index 100% rename from tests/sentry/api/endpoints/test_release_threshold.py rename to tests/sentry/api/endpoints/release_thresholds/test_release_threshold.py diff --git a/tests/sentry/api/endpoints/test_release_threshold_details.py b/tests/sentry/api/endpoints/release_thresholds/test_release_threshold_details.py similarity index 100% rename from tests/sentry/api/endpoints/test_release_threshold_details.py rename to tests/sentry/api/endpoints/release_thresholds/test_release_threshold_details.py diff --git a/tests/sentry/api/endpoints/test_release_threshold_status.py b/tests/sentry/api/endpoints/release_thresholds/test_release_threshold_status.py similarity index 100% rename from tests/sentry/api/endpoints/test_release_threshold_status.py rename to tests/sentry/api/endpoints/release_thresholds/test_release_threshold_status.py