frontpage: Separate shortcuts for XMPP server and client

This commit is contained in:
James Valleroy 2016-08-30 19:28:48 -04:00 committed by Sunil Mohan Adapa
parent 49eadd971a
commit 0fc1eaa1cd
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -91,7 +91,10 @@ def setup(helper, old_version=None):
def add_shortcut():
frontpage.add_shortcut('xmpp', title, '/jwchat', 'glyphicon-comment')
frontpage.add_shortcut('jwchat', _('Chat Client (JWChat)'), '/jwchat',
'glyphicon-comment')
frontpage.add_shortcut('xmpp', title, '?selected=xmpp',
'glyphicon-comment', description)
class EjabberdServiceView(ServiceView):
@ -127,6 +130,7 @@ def enable():
def disable():
"""Enable the module."""
actions.superuser_run('xmpp', ['disable'])
frontpage.remove_shortcut('jwchat')
frontpage.remove_shortcut('xmpp')