mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
coturn: Mention ejabberd in app description
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
9b446d5dd1
commit
ec67b71aa6
@ -7,6 +7,7 @@ import json
|
||||
import logging
|
||||
import pathlib
|
||||
|
||||
from django.urls import reverse_lazy
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
from plinth import actions
|
||||
@ -19,6 +20,7 @@ from plinth.modules.coturn.components import TurnConfiguration, TurnConsumer
|
||||
from plinth.modules.firewall.components import Firewall
|
||||
from plinth.modules.letsencrypt.components import LetsEncrypt
|
||||
from plinth.modules.users.components import UsersAndGroups
|
||||
from plinth.utils import format_lazy
|
||||
|
||||
from . import manifest
|
||||
|
||||
@ -35,8 +37,11 @@ _description = [
|
||||
'providing an implementation of TURN and STUN protocols. WebRTC, SIP '
|
||||
'and other communication servers can use it to establish a call between '
|
||||
'parties who are otherwise unable connect to each other.'),
|
||||
_('It is not meant to be used directly by users. Servers such as '
|
||||
'matrix-synapse need to be configured with the details provided here.'),
|
||||
format_lazy(
|
||||
_('It is not meant to be used directly by users. Servers such as '
|
||||
'<a href="{ms_url}">Matrix Synapse</a> or <a href="{e_url}">ejabberd'
|
||||
'</a> need to be configured with the details provided here.'),
|
||||
ms_url=reverse_lazy('matrixsynapse:index'), e_url=('ejabberd:index')),
|
||||
]
|
||||
|
||||
app = None
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user