aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkotibold2011-06-20 01:11:45 +0200
committermarkotibold2011-06-20 01:11:45 +0200
commit1692942ec2eaf211777d2dbb30ae6cf9dd52177f (patch)
tree810393ab4c86ef1ef46424cb11050c9f7a491fa9
parentef8c286f86027b2f7ebea2232730bd7340f20075 (diff)
downloaddjango-rest-framework-1692942ec2eaf211777d2dbb30ae6cf9dd52177f.tar.bz2
added a `permissions` example with just a per-user-throttle which we may want to expand with some auth examples.
-rw-r--r--examples/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/urls.py b/examples/urls.py
index cf4d4042..08d97a14 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')),
)