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"), )