diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-05 21:57:33 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-05 21:57:33 -0600 |
commit | ab9162ac1413b5f59833f7f710863643766ee2f5 (patch) | |
tree | 4e68b656c674bcd52e58064b6285060a3e243ecd /visualize/urls.py | |
parent | fb61a6acdf113e2c2266b93fb690b0444c175264 (diff) |
Add pgp_keys visualize JSON view
This will be used for an SVG graph of all of the master and developer
PGP keys.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'visualize/urls.py')
-rw-r--r-- | visualize/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/visualize/urls.py b/visualize/urls.py index 57ee0626..02d83bec 100644 --- a/visualize/urls.py +++ b/visualize/urls.py @@ -4,6 +4,7 @@ urlpatterns = patterns('visualize.views', (r'^$', 'index', {}, 'visualize-index'), (r'^by_arch/$', 'by_arch', {}, 'visualize-byarch'), (r'^by_repo/$', 'by_repo', {}, 'visualize-byrepo'), + (r'^pgp_keys/$', 'pgp_keys', {}, 'visualize-pgp_keys'), ) # vim: set ts=4 sw=4 et: |