Moved core plugins to the new URL API

This commit is contained in:
Raphael Michel
2016-07-31 13:06:06 +02:00
parent c744ee93b9
commit 1fbb1352d9
7 changed files with 2 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
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'),
]