11 lines
286 B
Python
11 lines
286 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import SimpleRouter
|
|
|
|
from notifications.views import NotificationViewSet
|
|
|
|
router = SimpleRouter()
|
|
router.register('', NotificationViewSet, basename='notifications')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|