aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/routers.md
diff options
context:
space:
mode:
authorTymur Maryokhin2015-01-29 17:28:18 +0100
committerTymur Maryokhin2015-01-29 17:28:18 +0100
commite720927b78a31999f03bfa248329d623ce2c045c (patch)
treecbc175154ae21c78ed20d9bdc436707564ee9e5d /docs/api-guide/routers.md
parentba7dca893cd55a1d5ee928c4b10878c92c44c4f5 (diff)
downloaddjango-rest-framework-e720927b78a31999f03bfa248329d623ce2c045c.tar.bz2
Removed deprecated '.model' docs
Diffstat (limited to 'docs/api-guide/routers.md')
-rw-r--r--docs/api-guide/routers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/routers.md b/docs/api-guide/routers.md
index a9f911a9..592f7d66 100644
--- a/docs/api-guide/routers.md
+++ b/docs/api-guide/routers.md
@@ -28,7 +28,7 @@ There are two mandatory arguments to the `register()` method:
Optionally, you may also specify an additional argument:
-* `base_name` - The base to use for the URL names that are created. If unset the basename will be automatically generated based on the `model` or `queryset` attribute on the viewset, if it has one. Note that if the viewset does not include a `model` or `queryset` attribute then you must set `base_name` when registering the viewset.
+* `base_name` - The base to use for the URL names that are created. If unset the basename will be automatically generated based on the `queryset` attribute of the viewset, if it has one. Note that if the viewset does not include a `queryset` attribute then you must set `base_name` when registering the viewset.
The example above would generate the following URL patterns: