diff options
| author | tom christie tom@tomchristie.com | 2011-01-26 08:58:09 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2011-01-26 08:58:09 +0000 |
| commit | 6807cf014cb0fde611f63c64bc352038206176cc (patch) | |
| tree | b5ebd4414852bf39efdf5380c57875c91e798ee2 /examples/urls.py | |
| parent | eff54c00d514e1edd74fbc789f9064d09db40b02 (diff) | |
| download | django-rest-framework-6807cf014cb0fde611f63c64bc352038206176cc.tar.bz2 | |
Added pygments_api example
Diffstat (limited to 'examples/urls.py')
| -rw-r--r-- | examples/urls.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/urls.py b/examples/urls.py index 03791084..3b93045d 100644 --- a/examples/urls.py +++ b/examples/urls.py @@ -4,8 +4,9 @@ from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', - (r'^blog-post-example/', include('blogpost.urls')), - (r'^object-store-example/', include('objectstore.urls')), + (r'^blog-post-api/', include('blogpost.urls')), + (r'^object-store-api/', include('objectstore.urls')), + (r'^pygments-api/', include('pygments_api.urls')), (r'^admin/doc/', include('django.contrib.admindocs.urls')), (r'^admin/', include(admin.site.urls)), ) |
