mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-15 06:49:17 +00:00
Merge pull request #3236 from jumpserver/dev_usergroups
[Bugfix] 修复用户组创建页面Bug
This commit is contained in:
@@ -306,10 +306,6 @@ class UserBulkUpdateForm(OrgModelForm):
|
||||
return users
|
||||
|
||||
|
||||
def user_limit_to():
|
||||
return {"orgs": current_org}
|
||||
|
||||
|
||||
class UserGroupForm(OrgModelForm):
|
||||
users = forms.ModelMultipleChoiceField(
|
||||
queryset=User.objects.all(),
|
||||
@@ -321,7 +317,6 @@ class UserGroupForm(OrgModelForm):
|
||||
}
|
||||
),
|
||||
required=False,
|
||||
limit_choices_to=user_limit_to
|
||||
)
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
|
Reference in New Issue
Block a user