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 1
1
# Change Log
2
2
3
+ ## [ 1.0.0] 2022-10-24
4
+ ### STABLE_RELEASE
5
+
6
+ - Flag the stable version
7
+ - DOCS Update
8
+
3
9
## [ 0.0.3] 2022-10-24
4
10
### Improvements
5
11
Original file line number Diff line number Diff line change @@ -76,11 +76,11 @@ $ python manage.py migrate
76
76
77
77
``` python
78
78
from 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
80
80
81
81
urlpatterns = [
82
82
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
84
84
]
85
85
```
86
86
@@ -94,7 +94,8 @@ from rest_framework.authtoken.views import obtain_auth_token # <-- NEW
94
94
95
95
urlpatterns = [
96
96
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
98
99
path(' login/jwt/' , view = obtain_auth_token), # <-- NEW
99
100
]
100
101
```
You can’t perform that action at this time.
0 commit comments