wcandillon / swagger-js-codegen

A Swagger Codegen for typescript, nodejs & angularjs
Apache License 2.0
693 stars 286 forks source link

Make tags available #259

Closed notthatnathan closed 2 years ago

notthatnathan commented 2 years ago

Includes the tags field from the swagger file as template variables. Format is array of objects:

tags: [
  {
    name: 'house-pets',
    camelCaseName: 'housePets',
  },
  {
    name: 'zoo-pets',
    camelCaseName: 'zooPets',
  },
]