зеркало из
1
0
Форкнуть 0

Update modelerfour/flattener/flattener.ts

Co-Authored-By: David Wilson <david@daviwil.com>
This commit is contained in:
Garrett Serack 2020-02-28 09:59:22 -08:00 коммит произвёл GitHub
Родитель 7d0b42c087
Коммит 57d8cb202a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -195,7 +195,7 @@ export class Flattener {
for (const group of this.codeModel.operationGroups) { for (const group of this.codeModel.operationGroups) {
for (const operation of group.operations) { for (const operation of group.operations) {
// when there are multiple requests in an operation // when there are multiple requests in an operation
// and the geneator asks not to flatten them // and the generator asks not to flatten them
if (length(operation.requests) > 1 && this.options['multiple-request-parameter-flattening'] === false) { if (length(operation.requests) > 1 && this.options['multiple-request-parameter-flattening'] === false) {
continue; continue;
} }
@ -231,4 +231,4 @@ export class Flattener {
return this.codeModel; return this.codeModel;
} }
} }