types: Add allow_nobody_group field to GroupPermissionSetting.

This commit is contained in:
Sahil Batra
2023-04-06 11:42:41 +05:30
committed by Tim Abbott
parent 8c744752ed
commit 5237e9008f
2 changed files with 2 additions and 0 deletions

View File

@@ -279,3 +279,4 @@ class GroupPermissionSetting:
require_system_group: bool require_system_group: bool
allow_internet_group: bool allow_internet_group: bool
allow_owners_group: bool allow_owners_group: bool
allow_nobody_group: bool

View File

@@ -2619,6 +2619,7 @@ class Stream(models.Model):
require_system_group=True, require_system_group=True,
allow_internet_group=False, allow_internet_group=False,
allow_owners_group=False, allow_owners_group=False,
allow_nobody_group=False,
), ),
} }