(
name: string,
security: HttpApiSecurity
)
| 260 | } |
| 261 | |
| 262 | function processHttpApiSecurity( |
| 263 | name: string, |
| 264 | security: HttpApiSecurity |
| 265 | ) { |
| 266 | if (spec.components.securitySchemes[name] !== undefined) { |
| 267 | return |
| 268 | } |
| 269 | spec.components.securitySchemes[name] = makeSecurityScheme(security) |
| 270 | } |
| 271 | |
| 272 | processAnnotation(api.annotations, HttpApi.AdditionalSchemas, (componentSchemas) => { |
| 273 | componentSchemas.forEach((componentSchema) => processAST(componentSchema.ast)) |
no test coverage detected