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.
8 lines
324 B
8 lines
324 B
from rest_framework import serializers
|
|
from .models import Location
|
|
|
|
class LocationSerializerBase(serializers.ModelSerializer): # serializers.ModelSerializer just tells django to convert sql to JSON
|
|
class Meta:
|
|
model = Location # tell django which model to use
|
|
fields = ('id', 'street', 'city', 'state')
|