fix(perms): 修复失效资产授权action 还在的问题

pull/4783/head^2
xinwen 2020-10-13 19:04:26 +08:00
parent a57ce482dd
commit f3d052554d
1 changed files with 2 additions and 2 deletions

View File

@ -37,12 +37,12 @@ def get_asset_system_users_id_with_actions(asset_perm_queryset: BasePermissionQu
def get_asset_system_users_id_with_actions_by_user(user: User, asset: Asset):
queryset = AssetPermission.objects.filter(
Q(users=user) | Q(user_groups__users=user)
)
).valid()
return get_asset_system_users_id_with_actions(queryset, asset)
def get_asset_system_users_id_with_actions_by_group(group: UserGroup, asset: Asset):
queryset = AssetPermission.objects.filter(
user_groups=group
)
).valid()
return get_asset_system_users_id_with_actions(queryset, asset)