9 lines
263 B
Python
9 lines
263 B
Python
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^discrepancies/$', 'ietf.sync.views.discrepancies'),
|
|
url(r'^(?P<org>\w+)/notify/(?P<notification>\w+)/$', 'ietf.sync.views.notify'),
|
|
url(r'^rfceditor/undo/', 'ietf.sync.views.rfceditor_undo')
|
|
]
|
|
|