Files
bugsink/ingest/urls.py
2023-11-03 19:25:26 +01:00

10 lines
316 B
Python

from django.urls import path
from .views import IngestEventAPIView, IngestEnvelopeAPIView
urlpatterns = [
# project_id has to be an int per Sentry Client expectations.
path("<int:project_id>/store/", IngestEventAPIView.as_view()),
path("<int:project_id>/envelope/", IngestEnvelopeAPIView.as_view()),
]