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