and put the thing to notify in the URL, like /sync/iana/notify/changes/, instead of using POST parameters; refactor the two sync views to use the same for IANA and RFC Editor; require Secretariat or IANA/RFC Editor roles for triggering the updates and support passing username and password for auth to make it easier in the other end once we move away from HTTP Auth - Legacy-Id: 4868
8 lines
230 B
Python
8 lines
230 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^discrepancies/$', 'ietf.sync.views.discrepancies'),
|
|
url(r'^(?P<org>\w+)/notify/(?P<notification>\w+)/$', 'ietf.sync.views.notify'),
|
|
)
|
|
|