#$$ #3

Merged
Saani merged 1 commits from feature/authentication_and_authorization into main 2025-11-22 16:45:26 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 7d22911646 - Show all commits

View File

@ -29,7 +29,7 @@ INSTALLED_APPS = [
'corsheaders',
'users',
'meetings',
# 'meetings',
]
MIDDLEWARE = [

View File

@ -4,5 +4,5 @@ from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('api/auth/', include('users.urls')),
path('api/', include('meetings.urls')),
# path('api/', include('meetings.urls')),
]