There are three arguments to the `register()` method:
*`prefix` - The URL prefix to use for this set of routes.
*`viewset` - The viewset class.
*`basename` - The base to use for the URL names that are created.
*`name` - The base to use for the URL names that are created.
The example above would generate the following URL patterns:
...
...
@@ -119,4 +119,4 @@ The following example will only route to the `list` and `retrieve` actions, and
If you want to provide totally custom behavior, you can override `BaseRouter` and override the `get_urls()` method. The method should insect the registered viewsets and return a list of URL patterns. The registered prefix, viewset and basename tuples may be inspected by accessing the `self.registry` attribute.