diff --git a/docs/index.md b/docs/index.md index 28e330250..c62e5eb68 100644 --- a/docs/index.md +++ b/docs/index.md @@ -120,7 +120,7 @@ If you're intending to use the browsable API you'll probably also want to add RE urlpatterns = [ ... - path('api-auth/', include('rest_framework.urls')) + path('api/v1/', include('rest_framework.urls')) ] Note that the URL path can be whatever you want. @@ -141,8 +141,6 @@ Any global settings for a REST framework API are kept in a single configuration ] } -Don't forget to make sure you've also added `rest_framework` to your `INSTALLED_APPS`. - We're ready to create our API now. Here's our project's root `urls.py` module: