Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/sentry/api/endpoints/relay/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class RelayIdSerializer(serializers.Serializer):
from .health_check import RelayHealthCheck
from .index import RelayIndexEndpoint
from .project_configs import RelayProjectConfigsEndpoint
from .project_ids import RelayProjectIdsEndpoint
from .public_keys import RelayPublicKeysEndpoint
from .register_challenge import RelayRegisterChallengeEndpoint
from .register_response import RelayRegisterResponseEndpoint
Expand All @@ -22,7 +21,6 @@ class RelayIdSerializer(serializers.Serializer):
"RelayIdSerializer",
"RelayIndexEndpoint",
"RelayProjectConfigsEndpoint",
"RelayProjectIdsEndpoint",
"RelayPublicKeysEndpoint",
"RelayRegisterChallengeEndpoint",
"RelayRegisterResponseEndpoint",
Expand Down
41 changes: 0 additions & 41 deletions src/sentry/api/endpoints/relay/project_ids.py

This file was deleted.

6 changes: 0 additions & 6 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,6 @@
RelayHealthCheck,
RelayIndexEndpoint,
RelayProjectConfigsEndpoint,
RelayProjectIdsEndpoint,
RelayPublicKeysEndpoint,
RelayRegisterChallengeEndpoint,
RelayRegisterResponseEndpoint,
Expand Down Expand Up @@ -1110,11 +1109,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
RelayProjectConfigsEndpoint.as_view(),
name="sentry-api-0-relay-projectconfigs",
),
re_path(
r"^projectids/$",
RelayProjectIdsEndpoint.as_view(),
name="sentry-api-0-relay-projectids",
),
re_path(

This comment was marked as outdated.

r"^publickeys/$",
RelayPublicKeysEndpoint.as_view(),
Expand Down
124 changes: 0 additions & 124 deletions tests/sentry/api/endpoints/test_relay_projectids.py

This file was deleted.

Loading