mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 00:09:14 +00:00
14 lines
216 B
Python
14 lines
216 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from rest_framework import serializers
|
|
|
|
from .models import FTPLog
|
|
|
|
|
|
class FTPLogSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
model = FTPLog
|
|
fields = '__all__'
|