#29 feat(Auth): add login.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from django.urls import path, include
|
||||
from django.contrib.auth.views import LoginView
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
from . import views
|
||||
@@ -15,6 +16,7 @@ router.register(r'reconciliate_jar', api_views.ReconciliateJarModelView,
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name="wellcome"),
|
||||
path("accounts/", include("django.contrib.auth.urls")),
|
||||
path("comprar", views.buy, name="buy"),
|
||||
path("compras", views.purchases, name="purchases"),
|
||||
path("productos", views.products, name="products"),
|
||||
|
||||
Reference in New Issue
Block a user