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:
Joseph Nuthalapati 2021-04-16 15:48:03 +05:30 committed by James Valleroy
parent 9b446d5dd1
commit ec67b71aa6
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -7,6 +7,7 @@ import json
import logging import logging
import pathlib import pathlib
from django.urls import reverse_lazy
from django.utils.translation import ugettext_lazy as _ from django.utils.translation import ugettext_lazy as _
from plinth import actions 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.firewall.components import Firewall
from plinth.modules.letsencrypt.components import LetsEncrypt from plinth.modules.letsencrypt.components import LetsEncrypt
from plinth.modules.users.components import UsersAndGroups from plinth.modules.users.components import UsersAndGroups
from plinth.utils import format_lazy
from . import manifest from . import manifest
@ -35,8 +37,11 @@ _description = [
'providing an implementation of TURN and STUN protocols. WebRTC, SIP ' 'providing an implementation of TURN and STUN protocols. WebRTC, SIP '
'and other communication servers can use it to establish a call between ' 'and other communication servers can use it to establish a call between '
'parties who are otherwise unable connect to each other.'), 'parties who are otherwise unable connect to each other.'),
_('It is not meant to be used directly by users. Servers such as ' format_lazy(
'matrix-synapse need to be configured with the details provided here.'), _('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 app = None