Skip to content
Snippets Groups Projects
Commit 8a24c048 authored by AndiMajore's avatar AndiMajore
Browse files

changing expression route from get to post to fix current incompatibility

Former-commit-id: e732fffb
parent 3bfd6edc
No related branches found
No related tags found
No related merge requests found
......@@ -659,6 +659,9 @@ class TissueExpressionView(APIView):
"""
def get(self, request) -> Response:
return self.post(request)
def post(self, request) -> Response:
tissue = Tissue.objects.get(id=request.query_params.get('tissue'))
if request.query_params.get('proteins'):
......
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