added a permissions example with just a per-user-throttle which we may want to expand with some auth examples.

This commit is contained in:
markotibold 2011-06-20 01:11:45 +02:00
parent ef8c286f86
commit 1692942ec2

View File

@ -10,6 +10,7 @@ urlpatterns = patterns('',
(r'^object-store/', include('objectstore.urls')),
(r'^pygments/', include('pygments_api.urls')),
(r'^blog-post/', include('blogpost.urls')),
(r'^permissions-example/', include('permissionsexample.urls')),
(r'^', include('djangorestframework.urls')),
)