You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/generators/scala-akka-http-server.md
+1
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
33
33
|legacyDiscriminatorBehavior|Set to false for generators with better support for discriminators. (Python, Java, Go, PowerShell, C# have this enabled by default).|<dl><dt>**true**</dt><dd>The mapping in the discriminator includes descendent schemas that allOf inherit from self and the discriminator mapping schemas in the OAS document.</dd><dt>**false**</dt><dd>The mapping in the discriminator includes any descendent schemas that allOf inherit from self, any oneOf schemas, any anyOf schemas, any x-discriminator-values, and the discriminator mapping schemas in the OAS document AND Codegen validates that oneOf and anyOf schemas contain the required discriminator and throws an error if the discriminator is missing.</dd></dl>|true|
34
34
|modelPackage|package for generated models||null|
35
35
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name||camelCase|
36
+
|pekkoHttpVersion|The version of pekko-http||1.1.0|
36
37
|prependFormOrBodyParameters|Add form or body parameters to the beginning of the parameter list.||false|
37
38
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.||true|
38
39
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.||true|
Copy file name to clipboardexpand all lines: modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/ScalaAkkaHttpServerCodegen.java
+13-3
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,14 @@ public class ScalaAkkaHttpServerCodegen extends AbstractScalaCodegen implements
publicstaticfinalStringGENERATE_AS_MANAGED_SOURCES_DESC = "Resulting files cab be used as managed resources. No build files or default controllers will be generated";
@@ -124,6 +127,7 @@ public ScalaAkkaHttpServerCodegen() {
0 commit comments