15 lines
354 B
Python
15 lines
354 B
Python
from django.urls import path, include
|
|
|
|
from .views import *
|
|
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
app_name = 'notifications'
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'read', NotificationReadViewSet, basename='notification')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
path('count/', NewNotificationCountAPIView().as_view()),
|
|
] |