Update docs/topics/browsable-api.md

This commit is contained in:
Asif Saif Uddin 2024-08-27 13:38:03 +06:00 committed by GitHub
parent bf77df6d39
commit e77eec0ff2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ from django.urls import include, path
urlpatterns = [
# ...
re_path(r"^api-auth/", include("rest_framework.urls", namespace="rest_framework"))
path("api-auth/", include("rest_framework.urls", namespace="rest_framework"))
]
```