diff options
Diffstat (limited to 'docs/api-guide/routers.md')
| -rw-r--r-- | docs/api-guide/routers.md | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/docs/api-guide/routers.md b/docs/api-guide/routers.md index c8465418..f083b3d4 100644 --- a/docs/api-guide/routers.md +++ b/docs/api-guide/routers.md @@ -14,6 +14,8 @@ REST framework adds support for automatic URL routing to Django, and provides yo  Here's an example of a simple URL conf, that uses `DefaultRouter`. +    from rest_framework import routers +      router = routers.SimpleRouter()      router.register(r'users', UserViewSet)      router.register(r'accounts', AccountViewSet) @@ -40,6 +42,9 @@ The example above would generate the following URL patterns:  Any methods on the viewset decorated with `@detail_route` or `@list_route` will also be routed.  For example, given a method like this on the `UserViewSet` class: +	from myapp.permissions import IsAdminOrIsSelf +    from rest_framework.decorators import detail_route +      @detail_route(methods=['post'], permission_classes=[IsAdminOrIsSelf])      def set_password(self, request, pk=None):          ... @@ -122,6 +127,8 @@ The arguments to the `Route` named tuple are:  The following example will only route to the `list` and `retrieve` actions, and does not use the trailing slash convention. +    from rest_framework.routers import Route, SimpleRouter +      class ReadOnlyRouter(SimpleRouter):          """          A router for read-only APIs, which doesn't use trailing slashes. @@ -146,4 +153,4 @@ If you want to provide totally custom behavior, you can override `BaseRouter` an  You may also want to override the `get_default_base_name(self, viewset)` method, or else always explicitly set the `base_name` argument when registering your viewsets with the router.  [cite]: http://guides.rubyonrails.org/routing.html -[route-decorators]: viewsets.html#marking-extra-actions-for-routing
\ No newline at end of file +[route-decorators]: viewsets.html#marking-extra-actions-for-routing | 
