Skip to content
Snippets Groups Projects
Commit 9b57c735 authored by Andreas Nüßlein's avatar Andreas Nüßlein
Browse files

fix after version bump

parent bfe39e66
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,10 @@ class ConfigurationStructureView(PermissionMixin, LogUserMixin, GenericAPIView):
``flat``: If present, the structure will be a flat list of questions.
"""
def get_queryset(self):
# DRF persists on having a "get_queryset" even when it's not used
return
def get(self, request, *args, **kwargs) -> Response:
flat = request.GET.get("flat", False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment