mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
9 lines
198 B
Python
9 lines
198 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/sendmail/', views.SenderView.as_view(),
|
|
name='send'),
|
|
]
|