13 lines
377 B
Python
13 lines
377 B
Python
from django.urls import path, include
|
|
from rest_framework import routers
|
|
from django.conf import settings
|
|
import oauth2_provider.views as oauth2_views
|
|
from .views import NajvaNotificationViewSet
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register('notification_base', NajvaNotificationViewSet, basename='notification_base')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|