From 3f54d49d8b1cb4c1e7222ec2eaf0bb4be7ebd9a0 Mon Sep 17 00:00:00 2001 From: Joel Falknau Date: Thu, 12 Sep 2024 15:54:06 +1000 Subject: [PATCH] update help text from mumble definition --- allianceauth/services/modules/mumble/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/allianceauth/services/modules/mumble/models.py b/allianceauth/services/modules/mumble/models.py index 72ab63fc..8c7d0ead 100644 --- a/allianceauth/services/modules/mumble/models.py +++ b/allianceauth/services/modules/mumble/models.py @@ -90,7 +90,7 @@ class MumbleUser(AbstractServiceModel): blank=True, null=True, editable=False, - help_text="The Mumble Release the user last authenticated with" + help_text="Client release. For official releases, this equals the version. For snapshots and git compiles, this will be something else." ) version = models.IntegerField( verbose_name="Mumble Version", @@ -159,4 +159,5 @@ class MumbleUser(AbstractServiceModel): class Meta: permissions = ( ("access_mumble", "Can access the Mumble service"), + ("view_connection_history", "Can access the connection history of the Mumble service"), )