mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Add basic video room based on demo. - Set port range to use for RTP. - coturn: Add component for time-limited TURN configuration. Signed-off-by: James Valleroy <jvalleroy@mailbox.org> [sunil: Don't error out when coturn is not installed/configured] [sunil: Prepend data- to custom attribute in HTML] [sunil: Convert SVG with embedded bitmap to vector graphics] [sunil: Hide Javascript license information in footer] [sunil: Minor changes to comments for styling] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
18 lines
409 B
Python
18 lines
409 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the janus app.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
from stronghold.decorators import public
|
|
|
|
from plinth.views import AppView
|
|
|
|
from .views import JanusRoomView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^apps/janus/$', AppView.as_view(app_id='janus'), name='index'),
|
|
re_path(r'^apps/janus/room/$', public(JanusRoomView.as_view()),
|
|
name='room')
|
|
]
|