mirror of https://github.com/jumpserver/jumpserver
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
|
from .account import (
|
||
|
AccountFilterSet, AccountViewSet, AccountSecretsViewSet
|
||
|
)
|
||
|
from common.mixins import RecordViewLogMixin
|
||
|
from assets import serializers
|
||
|
from assets.models import Account
|
||
|
|
||
|
__all__ = ['AccountHistoryViewSet', 'AccountHistorySecretsViewSet']
|
||
|
|
||
|
|
||
|
class AccountHistoryFilterSet(AccountFilterSet):
|
||
|
class Meta:
|
||
|
model = Account.history.model
|
||
|
fields = AccountFilterSet.Meta.fields
|
||
|
|
||
|
|
||
|
class AccountHistoryViewSet(AccountViewSet):
|
||
|
model = Account.history.model
|
||
|
filterset_class = AccountHistoryFilterSet
|
||
|
serializer_classes = {
|
||
|
'default': serializers.AccountHistorySerializer,
|
||
|
}
|
||
|
rbac_perms = {
|
||
|
'list': 'assets.view_assethistoryaccount',
|
||
|
'retrieve': 'assets.view_assethistoryaccount',
|
||
|
}
|
||
|
http_method_names = ['get', 'options']
|
||
|
|
||
|
|
||
|
class AccountHistorySecretsViewSet(RecordViewLogMixin, AccountHistoryViewSet):
|
||
|
serializer_classes = {
|
||
|
'default': serializers.AccountHistorySecretSerializer
|
||
|
}
|
||
|
http_method_names = ['get']
|
||
|
permission_classes = AccountSecretsViewSet.permission_classes
|
||
|
rbac_perms = {
|
||
|
'list': 'assets.view_assethistoryaccountsecret',
|
||
|
'retrieve': 'assets.view_assethistoryaccountsecret',
|
||
|
}
|