mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 04:07:39 +03:00
9 lines
227 B
Python
9 lines
227 B
Python
from rest_framework import serializers
|
|
|
|
from rest_framework.tests.models import NullableForeignKeySource
|
|
|
|
|
|
class NullableFKSourceSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = NullableForeignKeySource
|