25 lines
753 B
Python
25 lines
753 B
Python
"""
|
|
WebSocket URL routing для Django Channels.
|
|
"""
|
|
from django.urls import path
|
|
from apps.video.routing import websocket_urlpatterns as video_websocket_urlpatterns
|
|
from apps.board.routing import websocket_urlpatterns as board_websocket_urlpatterns
|
|
from apps.notifications.routing import websocket_urlpatterns as notifications_websocket_urlpatterns
|
|
from apps.chat.routing import chat_websocket_urlpatterns
|
|
|
|
# WebSocket URL patterns
|
|
websocket_urlpatterns = [
|
|
# Video conferencing WebSocket
|
|
*video_websocket_urlpatterns,
|
|
|
|
# Board WebSocket
|
|
*board_websocket_urlpatterns,
|
|
|
|
# Notifications WebSocket
|
|
*notifications_websocket_urlpatterns,
|
|
|
|
# Chat WebSocket
|
|
*chat_websocket_urlpatterns,
|
|
]
|
|
|