✨ Feat: [#41] notification 앱 생성 및 알림 조회 구현
This commit is contained in:
14
notifications/urls.py
Normal file
14
notifications/urls.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path, include
|
||||
|
||||
from .views import *
|
||||
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
app_name = 'notifications'
|
||||
|
||||
router = DefaultRouter()
|
||||
router.register(r'', NotificationReadViewSet, basename='notification')
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls)),
|
||||
]
|
||||
Reference in New Issue
Block a user