From 8845588ec97944896b285492b3b0e8170a7d030f Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Fri, 27 May 2022 09:40:40 -0400 Subject: [PATCH] Island: Add a note about removing blackbox endpoints --- monkey/monkey_island/cc/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monkey/monkey_island/cc/app.py b/monkey/monkey_island/cc/app.py index 576f25890..2df4b7b1c 100644 --- a/monkey/monkey_island/cc/app.py +++ b/monkey/monkey_island/cc/app.py @@ -190,6 +190,8 @@ def init_api_resources(api: FlaskDIWrapper): # Resources used by black box tests # API Spec: Fix all the following endpoints, see comments in the resource classes + # Note: Preferably, the API will provide a rich feature set and allow access to all of the + # necessary data. This would make these endpoints obsolete. api.add_resource(MonkeyBlackboxEndpoint) api.add_resource(ClearCaches) api.add_resource(LogBlackboxEndpoint)