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.
30 lines
638 B
30 lines
638 B
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from rest_framework import serializers
|
||
|
|
||
|
from ..models import Domain, Gateway
|
||
|
|
||
|
|
||
|
class DomainSerializer(serializers.ModelSerializer):
|
||
|
asset_count = serializers.SerializerMethodField()
|
||
|
gateway_count = serializers.SerializerMethodField()
|
||
|
|
||
|
class Meta:
|
||
|
model = Domain
|
||
|
fields = '__all__'
|
||
|
|
||
|
@staticmethod
|
||
|
def get_asset_count(obj):
|
||
|
return obj.assets.count()
|
||
|
|
||
|
@staticmethod
|
||
|
def get_gateway_count(obj):
|
||
|
return obj.gateway_set.all().count()
|
||
|
|
||
|
|
||
|
class GatewaySerializer(serializers.ModelSerializer):
|
||
|
|
||
|
class Meta:
|
||
|
model = Gateway
|
||
|
fields = '__all__'
|