diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-28 21:41:03 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-28 21:41:03 +0200 |
commit | d0382f6e6b681d84e6f048b725741bb9ee1a946c (patch) | |
tree | 67749ad4e3ea7ec1ced2e709ef2580bac837c4d7 /urls.py | |
parent | 4650f5f405e8c71fa96e88cde546e096bb3a9811 (diff) | |
download | hyperkitty-d0382f6e6b681d84e6f048b725741bb9ee1a946c.tar.gz hyperkitty-d0382f6e6b681d84e6f048b725741bb9ee1a946c.tar.xz hyperkitty-d0382f6e6b681d84e6f048b725741bb9ee1a946c.zip |
Add a /api information page
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -44,6 +44,7 @@ urlpatterns = patterns('', url(r'^mockup/tag\/(?P<tag>.*)$', 'views.mockup.search_tag'), # REST API + url(r'^api/$', 'views.pages.api'), url(r'^api/email\/(?P<mlist_fqdn>.*@.*)\/(?P<messageid>.*)/', EmailResource.as_view()), url(r'^api/thread\/(?P<mlist_fqdn>.*@.*)\/(?P<threadid>.*)/', ThreadResource.as_view()), # Uncomment the admin/doc line below to enable admin documentation: |