Files
bugsink/events/urls.py
Klaas van Schelven fc7e186918 getting hash for issue: use GlitchTip's approach as an early stand-in
af9a700a8706f20771b005804d8c92ca95c8b072 in GlitchTip
2023-11-04 22:14:39 +01:00

10 lines
242 B
Python

from django.urls import path
from .views import decompressed_event_detail, debug_get_hash
urlpatterns = [
path('event/<uuid:pk>/', decompressed_event_detail),
path('debug_get_hash/<uuid:decompressed_event_pk>/', debug_get_hash),
]