mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +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>
15 lines
295 B
Python
15 lines
295 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from django.urls import reverse_lazy
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
clients = [{
|
|
'name': _('Janus Video Room'),
|
|
'platforms': [{
|
|
'type': 'web',
|
|
'url': reverse_lazy('janus:room')
|
|
}]
|
|
}]
|
|
|
|
backup = {}
|