mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-04 12:20:24 -06:00
10 lines
316 B
Python
10 lines
316 B
Python
from django.urls import path
|
|
|
|
from .views import IngestEventAPIView, IngestEnvelopeAPIView
|
|
|
|
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()),
|
|
]
|