diff options
author | Dan McGee <dan@archlinux.org> | 2011-11-10 18:09:19 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-10 18:09:19 -0600 |
commit | d80f4236d01f70380f71a46dd98f1f789d91d31c (patch) | |
tree | 73569e893400eb68b98bc97b513d9da36338bbbe /packages/urls.py | |
parent | 886630dd4e65a7be6d1bd3d8a0e70ab24e5affc6 (diff) |
Add package signoffs JSON view
This allows access to the same data (and even a bit more) from the
signoffs overview page in a machine-friendly way.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'packages/urls.py')
-rw-r--r-- | packages/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/urls.py b/packages/urls.py index 4d391a3c..1f25e3fd 100644 --- a/packages/urls.py +++ b/packages/urls.py @@ -18,6 +18,7 @@ package_patterns = patterns('packages.views', urlpatterns = patterns('packages.views', (r'^flaghelp/$', 'flaghelp'), (r'^signoffs/$', 'signoffs', {}, 'package-signoffs'), + (r'^signoffs/json/$', 'signoffs_json', {}, 'package-signoffs-json'), (r'^update/$', 'update'), (r'^$', 'search', {}, 'packages-search'), |