You've already forked WhereToGoRedux
mirror of
https://github.com/Llloooggg/WhereToGoRedux.git
synced 2026-03-06 21:16:23 +03:00
11 lines
263 B
Python
11 lines
263 B
Python
from rest_framework.serializers import ModelSerializer
|
|
|
|
from facilities.models import Facility
|
|
|
|
|
|
class FacilitySerializer(ModelSerializer):
|
|
class Meta:
|
|
model = Facility
|
|
geo_field = "location"
|
|
fields = ("id", "name", "address", "city")
|