UNCCGameDay-Server/uncc_gameday/gameday/views.py

15 lines
390 B
Python
Raw Normal View History

2013-10-14 22:31:36 -04:00
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)