Fork from Djrill and rename to "anymail"

This commit is contained in:
medmunds
2016-02-27 11:10:58 -08:00
parent f95d5d66dc
commit 921dd5d0d6
30 changed files with 68 additions and 60 deletions

11
anymail/urls.py Normal file
View File

@@ -0,0 +1,11 @@
try:
from django.conf.urls import url
except ImportError:
from django.conf.urls.defaults import url
from .views import DjrillWebhookView
urlpatterns = [
url(r'^webhook/$', DjrillWebhookView.as_view(), name='djrill_webhook'),
]