aboutsummaryrefslogtreecommitdiffstats
path: root/examples/urls.py
diff options
context:
space:
mode:
authorTom Christie2011-06-21 23:05:23 +0100
committerTom Christie2011-06-21 23:05:23 +0100
commit409ee533fd28b742f4e790dc56aa686f44db1fcd (patch)
tree4ead8d66f535fd6e6931f9a351c919fd702bd997 /examples/urls.py
parent82de0cf50a6f4ac2a3646a2524d149b7e7c85b2c (diff)
parent1692942ec2eaf211777d2dbb30ae6cf9dd52177f (diff)
downloaddjango-rest-framework-409ee533fd28b742f4e790dc56aa686f44db1fcd.tar.bz2
merge markos throttling example
Diffstat (limited to 'examples/urls.py')
-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')),
)