diff --git a/rest-api-templates/asterisk_processor.py b/rest-api-templates/asterisk_processor.py index 2ea5529327..e7a0b5fd1a 100644 --- a/rest-api-templates/asterisk_processor.py +++ b/rest-api-templates/asterisk_processor.py @@ -218,6 +218,7 @@ class AsteriskProcessor(SwaggerPostProcessor): if prop.name != prop.name.lower(): raise SwaggerError("Property name should be all lowercase", context) + prop.wiki_description = wikify(prop.description) def process_type(self, swagger_type, context): swagger_type.c_name = snakify(swagger_type.name)