updated for #852

This commit is contained in:
Tony Tam
2015-01-29 22:00:56 -08:00
parent 6a645a8f55
commit 703d3d048e
2 changed files with 30 additions and 4 deletions

View File

@@ -696,7 +696,20 @@ SwaggerResource.prototype.addOperations = function (resource_path, ops, consumes
}
}
o.nickname = this.sanitize(o.nickname);
var op = new SwaggerOperation(o.nickname, resource_path, method, o.parameters, o.summary, o.notes, type, responseMessages, this, consumes, produces, o.authorizations, o.deprecated);
var op = new SwaggerOperation(o.nickname,
resource_path,
method,
o.parameters,
o.summary,
o.notes,
type,
responseMessages,
this,
consumes,
produces,
o.authorizations,
o.deprecated);
this.operations[op.nickname] = op;
output.push(this.operationsArray.push(op));
}
@@ -888,7 +901,7 @@ var SwaggerOperation = function (nickname, path, method, parameters, summary, no
this.consumes = consumes;
this.produces = produces;
this.authorizations = typeof authorizations !== 'undefined' ? authorizations : resource.authorizations;
this.deprecated = deprecated;
this.deprecated = (typeof deprecated === 'string' ? Boolean(deprecated) : deprecated);
this['do'] = __bind(this['do'], this);
if (errors.length > 0) {