mirror of https://github.com/jumpserver/jumpserver
9 lines
175 B
Python
9 lines
175 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .. import ws
|
||
|
|
||
|
app_name = 'notifications'
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('ws/notifications/site-msg/', ws.SiteMsgWebsocket, name='site-msg-ws'),
|
||
|
]
|