island: Remove responsibility to decide whether the report should be displayed, from the backend

This commit is contained in:
Shreya 2021-07-06 16:14:22 +05:30
parent 7b167ba0c4
commit 6d32f85120
1 changed files with 1 additions and 1 deletions

View File

@ -7,4 +7,4 @@ from monkey_island.cc.resources.auth.auth import jwt_required
class RansomwareReport(flask_restful.Resource):
@jwt_required
def get(self):
return jsonify({"show": True, "report": None})
return jsonify({"report": None})