mirror of https://github.com/jumpserver/jumpserver
16 lines
500 B
Python
16 lines
500 B
Python
# ~*~ coding: utf-8 ~*~
|
|
#
|
|
|
|
from users.utils import AdminUserRequiredMixin
|
|
from users.models import User, UserGroup
|
|
from assets.models import Asset, AssetGroup, SystemUser
|
|
from assets.serializers import AssetGrantedSerializer, AssetGroupSerializer
|
|
|
|
|
|
def associate_system_users_with_assets(system_users, assets, asset_groups):
|
|
for asset in assets:
|
|
asset.system_users.add(*tuple(system_users))
|
|
|
|
for asset_group in asset_groups:
|
|
asset_group.system_users.add(*tuple(system_users))
|