[api] Add many missing API endpoints

This commit is contained in:
2025-11-17 16:00:10 -05:00
parent 749e74a54c
commit 8603bbd5cb
25 changed files with 317 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from locations import models
from rest_framework import serializers
class GeoLocationSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = models.GeoLocation
fields = "__all__"