start auth apis and packages, redis, celery and run with docker
This commit is contained in:
@@ -1 +1,12 @@
|
||||
from django.urls import path
|
||||
from django.urls import path, include
|
||||
|
||||
from core.apps.accounts.views.auth import LoginApiView, RegisterApiView
|
||||
|
||||
urlpatterns = [
|
||||
path('auth/', include(
|
||||
[
|
||||
path('login/', LoginApiView.as_view(), name='login'),
|
||||
path('register/', RegisterApiView.as_view(), name='login'),
|
||||
]
|
||||
))
|
||||
]
|
||||
Reference in New Issue
Block a user