Feat: [#41] notification 관련 설정 추가

This commit is contained in:
sm4640
2025-05-02 22:16:27 +09:00
parent ab8f3afd48
commit 430553f870
2 changed files with 2 additions and 0 deletions

View File

@@ -56,6 +56,7 @@ INSTALLED_APPS = [
'portfolios',
'projects',
'codes',
'notifications',
]
MIDDLEWARE = [

View File

@@ -10,6 +10,7 @@ urlpatterns = [
# path('api/code/', include('codes.urls')),
path('api/portfolio/', include('portfolios.urls')),
path('api/project/', include('projects.urls')),
path('api/notification/', include('notifications.urls')),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
if settings.DEBUG: