Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/singhchanmeet/ERP
Browse files Browse the repository at this point in the history
  • Loading branch information
exploring-solver committed Oct 24, 2023
2 parents 153a10a + 1bfabf5 commit 9f03e0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/core/urls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from django.contrib import admin
from django.urls import path, include
from django.conf.urls.static import static

from ms_identity_web.django.msal_views_and_urls import MsalViews
from . import settings
Expand All @@ -13,4 +14,4 @@
path(f'{settings.AAD_CONFIG.django.auth_endpoints.prefix}/', include(msal_urls)), # for ms teams authentication
path('student/', include('student.urls')),
# path('employee/', include('employee.urls')),
]
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) #for serving static files

0 comments on commit 9f03e0c

Please sign in to comment.