mirror of https://github.com/jumpserver/jumpserver
22 lines
640 B
Python
22 lines
640 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
from assets.models import Host
|
|
from .common import AssetSerializer
|
|
from .info.gathered import HostGatheredInfoSerializer
|
|
|
|
__all__ = ['HostSerializer']
|
|
|
|
|
|
class HostSerializer(AssetSerializer):
|
|
gathered_info = HostGatheredInfoSerializer(required=False, read_only=True, label=_("Gathered info"))
|
|
|
|
class Meta(AssetSerializer.Meta):
|
|
model = Host
|
|
fields = AssetSerializer.Meta.fields + ['gathered_info']
|
|
extra_kwargs = {
|
|
**AssetSerializer.Meta.extra_kwargs,
|
|
'address': {
|
|
'label': _("IP/Host")
|
|
},
|
|
}
|