Skip to content

Commit 791177b

Browse files
authored
ref: Remove EventDetails endpoint (#14107)
This endpoint isn't documented or used by the Sentry web application. There are no requests for this endpoint logged in Datadog over any recent time periods so it should be safe to remove.
1 parent 1d8d168 commit 791177b

File tree

3 files changed

+0
-417
lines changed

3 files changed

+0
-417
lines changed

src/sentry/api/endpoints/event_details.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/sentry/api/urls.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
from .endpoints.event_apple_crash_report import EventAppleCrashReportEndpoint
2424
from .endpoints.event_attachment_details import EventAttachmentDetailsEndpoint
2525
from .endpoints.event_attachments import EventAttachmentsEndpoint
26-
from .endpoints.event_details import EventDetailsEndpoint
2726
from .endpoints.event_file_committers import EventFileCommittersEndpoint
2827
from .endpoints.event_grouping_info import EventGroupingInfoEndpoint
2928
from .endpoints.event_owners import EventOwnersEndpoint
@@ -1401,13 +1400,6 @@
14011400
name='sentry-api-0-shared-group-details'
14021401
),
14031402

1404-
# Events
1405-
url(
1406-
r'^events/(?P<event_id>[^\/]+)/$',
1407-
EventDetailsEndpoint.as_view(),
1408-
name='sentry-api-0-event-details'
1409-
),
1410-
14111403
# Sentry Apps
14121404
url(
14131405
r'^sentry-apps/$',

0 commit comments

Comments
 (0)