nestia 2.1.8 → 2.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -212,7 +212,7 @@ var SwaggerGenerator;
|
|
|
212
212
|
|| !!route.parameters.find(function (param) { return param.encrypted === true; });
|
|
213
213
|
return {
|
|
214
214
|
tags: tags,
|
|
215
|
-
summary: encrypted ? "encrypted
|
|
215
|
+
summary: encrypted ? "encrypted" : undefined,
|
|
216
216
|
parameters: route.parameters
|
|
217
217
|
.filter(function (param) { return param.category !== "body"; })
|
|
218
218
|
.map(function (param) { return generate_parameter(checker, collection, route, param); }),
|