From dd5bc541ce97baa9a4ab8d7a31378dce6ead29c3 Mon Sep 17 00:00:00 2001 From: Jansen Kantor Date: Tue, 3 Mar 2020 16:43:26 -0500 Subject: [PATCH] add simple queryset (#23252) --- lms/djangoapps/teams/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/teams/views.py b/lms/djangoapps/teams/views.py index efab041c40..c8066de818 100644 --- a/lms/djangoapps/teams/views.py +++ b/lms/djangoapps/teams/views.py @@ -809,6 +809,7 @@ class TopicListView(GenericAPIView): authentication_classes = (BearerAuthentication, SessionAuthentication) permission_classes = (permissions.IsAuthenticated,) pagination_class = TopicsPagination + queryset = [] def get(self, request): """GET /api/team/v0/topics/?course_id={course_id}"""