Skip to content
Snippets Groups Projects
Commit 254dee04 authored by Brian Moe's avatar Brian Moe
Browse files

Fix bug #980 extra_attributes missing in event lists

parent 8c03a6c1
No related branches found
No related tags found
No related merge requests found
......@@ -422,7 +422,7 @@ class EventList(APIView):
d = {'error': 'Invalid query' }
return Response(d,status=status.HTTP_400_BAD_REQUEST)
events = events.order_by(sort)
events = events.order_by(sort).select_subclasses()
start = int(start)
count = int(count)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment