Skip to content

Commit

Permalink
Backend fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel-Therrien-Beslogic committed Nov 15, 2024
1 parent ccf840d commit a88d141
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions canopeum_backend/canopeum_backend/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,12 @@
from django.conf.urls.static import static
from django.contrib import admin
from django.urls import path
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView
from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView, SpectacularSwaggerView
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView

from . import views

urlpatterns = [





urlpatterns = [
path("admin/", admin.site.urls),
# Auth
path("auth/login/", views.LoginAPIView.as_view(), name="login"),
Expand Down

0 comments on commit a88d141

Please sign in to comment.