12 lines
310 B
Python
12 lines
310 B
Python
from rest_framework import serializers
|
|
from .models import Tenant
|
|
|
|
|
|
class TenantSerializer(serializers.ModelSerializer):
|
|
"""
|
|
Serializer for the Tenant model.
|
|
"""
|
|
class Meta:
|
|
model = Tenant
|
|
fields = '__all__'
|
|
read_only_fields = ('created_at', 'updated_at', 'schema_name') |