Island: Add more detail to TODO in Monkey resource

This commit is contained in:
Mike Salvatore 2021-12-06 19:31:50 -05:00
parent e8de38881c
commit b15612c9ae
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ class Monkey(flask_restful.Resource):
if guid:
monkey_json = mongo.db.monkey.find_one_or_404({"guid": guid})
# TODO: When the "legacy" format is no longer needed, update this logic and remove the
# "/api/monkey/<string:guid>/<string:config_format>" route.
# "/api/monkey/<string:guid>/<string:config_format>" route. Also considering not
# flattening the config in the first place.
if config_format == "legacy":
ConfigService.decrypt_flat_config(monkey_json["config"])
else: