Skip to content

Commit

Permalink
Update quickstart to Django 2.0 routing syntax (encode#6385)
Browse files Browse the repository at this point in the history
* Update quickstart to Django 2.0 routing syntax

* Remove uneccessary raw string identifiers

* Correctly import path function

* Fix import path to use django.urls

This is what is prescribed in the Django 2.1 tutorial
  • Loading branch information
johnthagen authored and Pierre Chiquet committed Mar 24, 2020
1 parent d60bf70 commit f8b639c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tutorial/quickstart.md
Expand Up @@ -111,7 +111,7 @@ We can easily break these down into individual views if we need to, but using vi

Okay, now let's wire up the API URLs. On to `tutorial/urls.py`...

from django.conf.urls import url, include
from django.urls import include, path
from rest_framework import routers
from tutorial.quickstart import views

Expand All @@ -122,8 +122,8 @@ Okay, now let's wire up the API URLs. On to `tutorial/urls.py`...
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
url(r'^', include(router.urls)),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
path('', include(router.urls)),
path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
]

Because we're using viewsets instead of views, we can automatically generate the URL conf for our API, by simply registering the viewsets with a router class.
Expand Down

0 comments on commit f8b639c

Please sign in to comment.