From 88c330a5033fccef4c0baa17a64a8c962034ea45 Mon Sep 17 00:00:00 2001 From: Shelby Sanders Date: Wed, 9 Jul 2014 03:36:41 -0700 Subject: [PATCH] Add indication of response being a collection --- .gitignore | 1 + public/lib/swagger.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a72b52e..79ec346 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ lib-cov *.pid *.gz +.idea pids logs results diff --git a/public/lib/swagger.js b/public/lib/swagger.js index fc40c5d..90c3a4d 100644 --- a/public/lib/swagger.js +++ b/public/lib/swagger.js @@ -540,7 +540,7 @@ return dataType; } else { if (listType != null) { - return models[listType].getMockSignature(); + return 'Array of ' + models[listType].getMockSignature(); } else { return models[dataType].getMockSignature(); }