Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref: Remove EventDetails endpoint #14107

Merged
merged 1 commit into from
Jul 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
39 changes: 0 additions & 39 deletions src/sentry/api/endpoints/event_details.py

This file was deleted.

8 changes: 0 additions & 8 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from .endpoints.event_apple_crash_report import EventAppleCrashReportEndpoint
from .endpoints.event_attachment_details import EventAttachmentDetailsEndpoint
from .endpoints.event_attachments import EventAttachmentsEndpoint
from .endpoints.event_details import EventDetailsEndpoint
from .endpoints.event_file_committers import EventFileCommittersEndpoint
from .endpoints.event_grouping_info import EventGroupingInfoEndpoint
from .endpoints.event_owners import EventOwnersEndpoint
Expand Down Expand Up @@ -1401,13 +1400,6 @@
name='sentry-api-0-shared-group-details'
),

# Events
url(
r'^events/(?P<event_id>[^\/]+)/$',
EventDetailsEndpoint.as_view(),
name='sentry-api-0-event-details'
),

# Sentry Apps
url(
r'^sentry-apps/$',
Expand Down
Loading