mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-05 04:40:20 -06:00
12 lines
446 B
Python
12 lines
446 B
Python
from django.urls import path
|
|
|
|
from .views import event_download, event_plaintext
|
|
|
|
|
|
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}),
|
|
path('event/<uuid:event_pk>/plain/', event_plaintext),
|
|
]
|