mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
638 B
23 lines
638 B
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from orgs.mixins.serializers import OrgResourceModelSerializerMixin
|
|
from ..models import GatheredUser
|
|
|
|
|
|
class GatheredUserSerializer(OrgResourceModelSerializerMixin):
|
|
class Meta:
|
|
model = GatheredUser
|
|
fields = [
|
|
'id', 'asset', 'hostname', 'ip', 'username',
|
|
'date_last_login', 'ip_last_login',
|
|
'present', 'date_created', 'date_updated'
|
|
]
|
|
read_only_fields = fields
|
|
extra_kwargs = {
|
|
'hostname': {'label': _("Hostname")},
|
|
'ip': {'label': 'IP'},
|
|
}
|