mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
11 lines
370 B
Python
11 lines
370 B
Python
from django.urls import path
|
|
|
|
from .views import event_download
|
|
|
|
|
|
urlpatterns = [
|
|
# path('event/<uuid:pk>/', event_detail), perhaps should become a redirect to issue/.../event now?
|
|
path('event/<uuid:event_pk>/raw/', event_download, kwargs={"as_attachment": False}),
|
|
path('event/<uuid:event_pk>/download/', event_download, kwargs={"as_attachment": True}),
|
|
]
|