We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1bae4a commit 6c5715dCopy full SHA for 6c5715d
README.md
@@ -66,11 +66,11 @@ api_admin_v1.auto_create_admin_controllers()
66
Now go to urls.py and add the following:
67
```
68
from django.urls import path
69
-from .apis import apis
+from .apis import api_admin_v1
70
71
urlpatterns = [
72
path("admin/", admin.site.urls),
73
- path("api_admin/v1/", apis.urls), # <---------- !
+ path("api_admin/v1/", api_admin_v1.urls), # <---------- !
74
]
75
76
Now go to http://127.0.0.1:8000/api_admin/v1/docs
0 commit comments