Added token auth

This commit is contained in:
Keannu Christian Bernasol 2023-02-25 19:10:23 +08:00
parent fa5bd13ca0
commit 41c77ae9ef
4 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,6 @@
from django.urls import path, include
urlpatterns = [
path('accounts/', include('djoser.urls')),
path('', include('djoser.urls')),
path('', include('djoser.urls.authtoken')),
]