mirror of
				https://github.com/bspeice/UNCCGameDay-Server
				synced 2025-10-31 09:20:36 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			390 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			390 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| 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) | 
