mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
539 B
17 lines
539 B
|
|
from rest_framework_bulk.routes import BulkRouter
|
|
from django.urls import path
|
|
|
|
from notifications import api
|
|
|
|
app_name = 'notifications'
|
|
|
|
router = BulkRouter()
|
|
router.register('system-msg-subscription', api.SystemMsgSubscriptionViewSet, 'system-msg-subscription')
|
|
router.register('user-msg-subscription', api.UserMsgSubscriptionViewSet, 'user-msg-subscription')
|
|
router.register('site-message', api.SiteMessageViewSet, 'site-message')
|
|
|
|
urlpatterns = [
|
|
path('backends/', api.BackendListView.as_view(), name='backends')
|
|
] + router.urls
|