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

pull/4778/head
xinwen 2020-10-13 19:04:26 +08:00 committed by 老广
parent 0ad389515b
commit ef86a49c1e
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)