From cda52a58e318c7f0aeed0cc1c50b2617418f9d5d Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sun, 4 Oct 2020 12:19:56 +1100 Subject: [PATCH] Remove manual 'permissions' control from groups admin interface - Does not actually *do* anything any more as the RuleSet approach overrides it anyway --- InvenTree/users/admin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/InvenTree/users/admin.py b/InvenTree/users/admin.py index a556e60080..c9546e0335 100644 --- a/InvenTree/users/admin.py +++ b/InvenTree/users/admin.py @@ -34,7 +34,6 @@ class InvenTreeGroupAdminForm(forms.ModelForm): fields = [ 'name', 'users', - 'permissions', ] def __init__(self, *args, **kwargs):