mirror of
https://github.com/bspeice/UNCCGameDay-Server
synced 2025-12-08 02:58:48 -05:00
Add new serialization code
This commit is contained in:
@ -1 +1,15 @@
|
||||
# Create your views here.
|
||||
from models import ParkingLot
|
||||
from serializers import ParkingLotSerializer
|
||||
|
||||
from rest_framework.views import APIView
|
||||
from rest_framework.response import Response
|
||||
|
||||
class ParkingLotList(APIView):
|
||||
"""
|
||||
List all parking lots
|
||||
"""
|
||||
|
||||
def get(self, request):
|
||||
parking_lots = ParkingLot.objects.all()
|
||||
serializer = ParkingLotSerializer(parking_lots, many=True)
|
||||
return Response(serializer.data)
|
||||
Reference in New Issue
Block a user