updated for #852
This commit is contained in:
17
dist/lib/swagger-client.js
vendored
17
dist/lib/swagger-client.js
vendored
@@ -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) {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user