File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 1.0.0] 2022-10-24
4+ ### STABLE_RELEASE
5+
6+ - Flag the stable version
7+ - DOCS Update
8+
39## [ 0.0.3] 2022-10-24
410### Improvements
511
Original file line number Diff line number Diff line change @@ -76,11 +76,11 @@ $ python manage.py migrate
7676
7777``` python
7878from django.contrib import admin
79- from django.urls import path, include # <-- NEW: 'include` directive added
79+ from django.urls import path, include # <-- NEW: 'include` directive added
8080
8181urlpatterns = [
8282 path(" admin/" , admin.site.urls),
83- path(" api/ " , include(" api .urls" )), # <-- NEW: API routing rules
83+ path(' ' , include(' django_dyn_api .urls' )), # <-- NEW: API routing rules
8484]
8585```
8686
@@ -94,7 +94,8 @@ from rest_framework.authtoken.views import obtain_auth_token # <-- NEW
9494
9595urlpatterns = [
9696 path(" admin/" , admin.site.urls),
97- path(" api/" , include(" api.urls" )), # <-- Added in the previous step
97+
98+ path(' ' , include(' django_dyn_api.urls' )), # <-- Added in the previous step
9899 path(' login/jwt/' , view = obtain_auth_token), # <-- NEW
99100]
100101```
You can’t perform that action at this time.
0 commit comments