PonyConf/conversations/urls.py

10 lines
185 B
Python
Raw Normal View History

2016-06-12 21:39:04 +00:00
from django.conf.urls import url
2016-06-14 19:39:04 +00:00
from conversations import views, emails
2016-06-12 21:39:04 +00:00
urlpatterns = [
2016-06-14 19:39:04 +00:00
url(r'^recv/$', emails.email_recv),
url(r'^$', views.messaging, name='messaging'),
2016-06-12 21:39:04 +00:00
]