diff options
| author | tom christie tom@tomchristie.com | 2010-12-30 23:29:01 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2010-12-30 23:29:01 +0000 |
| commit | c56e48f52e26a81d7a9f81fd74b0ea46d5434a90 (patch) | |
| tree | 98a2d33f9d23cbcbe77053a6ec6e1d3540442e99 /src/testapp/urls.py | |
| parent | a78f57847592fbaba9b483e2ace1591c9f295c71 (diff) | |
| download | django-rest-framework-c56e48f52e26a81d7a9f81fd74b0ea46d5434a90.tar.bz2 | |
Add parsers, form validation, etc...
Diffstat (limited to 'src/testapp/urls.py')
| -rw-r--r-- | src/testapp/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testapp/urls.py b/src/testapp/urls.py index a7d430bc..9cebd4ce 100644 --- a/src/testapp/urls.py +++ b/src/testapp/urls.py @@ -3,5 +3,6 @@ from django.conf.urls.defaults import patterns urlpatterns = patterns('testapp.views', (r'^$', 'RootResource'), (r'^read-only$', 'ReadOnlyResource'), - (r'^mirroring-write$', 'MirroringWriteResource'), + (r'^write-only$', 'MirroringWriteResource'), + (r'^read-write$', 'ReadWriteResource'), ) |
