From 1692942ec2eaf211777d2dbb30ae6cf9dd52177f Mon Sep 17 00:00:00 2001 From: markotibold Date: Mon, 20 Jun 2011 01:11:45 +0200 Subject: [PATCH] added a `permissions` example with just a per-user-throttle which we may want to expand with some auth examples. --- examples/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/urls.py b/examples/urls.py index cf4d4042c..08d97a14a 100644 --- a/examples/urls.py +++ b/examples/urls.py @@ -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')), )