mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 20:50:55 +00:00
* [breaking] Enforce vendor extension naming convention * [breaking] Rename system properties to global properties * [docs] Update site with global properties list and usage explanation * Use proper vendor extension casing in all templates * Set remaining vendor extensions to convention of lower kebab-cased with x- prefix * [samples] Regenerate * Update modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/RustServerCodegen.java Before we were adding hasPathParams twice, once with !op.pathParams.isEmpty(), and then again with hasPathParams. This was probably caused by a mistaken merge. This is causing the difference in samples Co-authored-by: Richard Whitehouse <richard.whitehouse@metaswitch.com> * [Samples] Regenerated! * Fix -D conversion to additional-properties, missed in bat files * JERSEY2 option changed * [samples] Regenerate * [scala][finch] Fix remaining vendor extensions format to conventino * [scala] The -D option was replaced with --global-property * [samples] Regenerate * Fix -DskipFormModel usage which has been moved to --global-property skipFormModel=true * [samples] Regenerate Co-authored-by: Richard Whitehouse <richard.whitehouse@metaswitch.com>
49 lines
765 B
JavaScript
Executable File
49 lines
765 B
JavaScript
Executable File
|
|
module.exports = {
|
|
docs: {
|
|
'Getting Started': [
|
|
'installation',
|
|
'plugins',
|
|
'online',
|
|
'usage',
|
|
'globals'
|
|
],
|
|
'Extending': [
|
|
'templating',
|
|
'customization',
|
|
'debugging',
|
|
'integrations'
|
|
],
|
|
'Contributing': [
|
|
'contributing',
|
|
'code-of-conduct',
|
|
'contribute-building',
|
|
'new-generator'
|
|
],
|
|
'About': [
|
|
'roadmap',
|
|
'swagger-codegen-migration',
|
|
'fork-qna'
|
|
],
|
|
'Releases': [
|
|
'release-summary',
|
|
'release-3-0-0'
|
|
],
|
|
'API': [
|
|
{
|
|
type: 'doc',
|
|
id: 'generators',
|
|
},
|
|
]
|
|
},
|
|
|
|
'faq-sidebar': {
|
|
'FAQ': [
|
|
'faq',
|
|
'faq-extending',
|
|
'faq-contributing',
|
|
'faq-generators'
|
|
]
|
|
}
|
|
}
|