mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2025-09-18 05:29:37 +08:00
Implement accounts app
This commit is contained in:
parent
82c48cf5eb
commit
bae2cc653e
17 changed files with 519 additions and 11 deletions
|
@ -1,4 +1,3 @@
|
|||
from core.settings import config
|
||||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
from drf_spectacular.views import (
|
||||
|
@ -7,8 +6,10 @@ from drf_spectacular.views import (
|
|||
SpectacularSwaggerView,
|
||||
)
|
||||
|
||||
from core.settings import config
|
||||
|
||||
urlpatterns = [
|
||||
# path("accounts/", include("accounts.urls")),
|
||||
path("accounts/", include("accounts.urls")),
|
||||
# Admin Panel
|
||||
path("admin/", admin.site.urls),
|
||||
# Swagger and Redoc API Doc URLs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue