Added comment to obscure if statement
This commit is contained in:
Jim Paine 2018-10-11 19:05:58 +01:00 коммит произвёл GitHub
Родитель 437224cdbd
Коммит 9a1e37386a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -18,6 +18,8 @@ namespace ContosoMaintenance.WebAPI.Helpers
public void Apply(SwaggerDocument swaggerDoc, DocumentFilterContext context)
{
// Even though the filter is applied to a specific document they seem to get call for every document,
// so to ensure we only apply the fitler to the right document we check it is for the expected document
if (!swaggerDoc.Info.Title.Contains(this.title)) return;
swaggerDoc.Paths = swaggerDoc.Paths.Where(x => x.Key.Contains(filter)).ToDictionary(x => x.Key, x => x.Value);
}