init data instead of class attribute

pull/236/head
simon 2 years ago
parent 04fc6ed26a
commit 1477370376
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -26,11 +26,12 @@ class ApiBaseView(APIView):
authentication_classes = [SessionAuthentication, TokenAuthentication]
permission_classes = [IsAuthenticated]
search_base = False
data = {"query": {"match_all": {}}}
data = False
def __init__(self):
super().__init__()
self.response = {"data": False, "config": AppConfig().config}
self.data = {"query": {"match_all": {}}}
self.status_code = False
self.context = False
self.pagination_handler = False

Loading…
Cancel
Save