mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
Add ContentEncodingCheckMiddleware
This commit is contained in:
@@ -4,8 +4,8 @@ from .views import IngestEventAPIView, IngestEnvelopeAPIView, MinidumpAPIView
|
||||
|
||||
urlpatterns = [
|
||||
# project_pk has to be an int per Sentry Client expectations.
|
||||
path("<int:project_pk>/store/", IngestEventAPIView.as_view()),
|
||||
path("<int:project_pk>/envelope/", IngestEnvelopeAPIView.as_view()),
|
||||
path("<int:project_pk>/store/", IngestEventAPIView.as_view(), name="ingest-store"),
|
||||
path("<int:project_pk>/envelope/", IngestEnvelopeAPIView.as_view(), name="ingest-envelope"),
|
||||
|
||||
# is this "ingest"? it is at least in the sense that it matches the API schema and downstream auth etc.
|
||||
path("<int:project_pk>/minidump/", MinidumpAPIView.as_view()),
|
||||
|
||||
Reference in New Issue
Block a user