From 9f95f81fa934af2bd2ea60cc417bf0d61882fbcc Mon Sep 17 00:00:00 2001 From: Guil Date: Fri, 22 Mar 2024 14:39:52 +0100 Subject: [PATCH] change adversary to ability in the description of post /v2/abilities --- app/api/v2/handlers/ability_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/v2/handlers/ability_api.py b/app/api/v2/handlers/ability_api.py index 372181fc7..2aaa14c37 100644 --- a/app/api/v2/handlers/ability_api.py +++ b/app/api/v2/handlers/ability_api.py @@ -48,7 +48,7 @@ async def get_ability_by_id(self, request: web.Request): return web.json_response(ability) @aiohttp_apispec.docs(tags=['abilities'], summary='Creates a new ability.', - description='Creates a new adversary based on the `AbilitySchema`. ' + description='Creates a new ability based on the `AbilitySchema`. ' '"name", "tactic", "technique_name", "technique_id" and "executors" are all required fields.') @aiohttp_apispec.request_schema(AbilitySchema) @aiohttp_apispec.response_schema(AbilitySchema,