Fix https://github.com/OpenAPITools/openapi-generator/issues/11570 by ensuring tags at the class level match tags at the method level (#13434)

This commit is contained in:
GregDThomas
2023-02-18 14:23:10 +00:00
committed by GitHub
parent e9f55c0dd9
commit c5d67ee042
74 changed files with 132 additions and 73 deletions

View File

@@ -35,7 +35,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "bar", description = "the bar API")
@Tag(name = "Bar", description = "the Bar API")
public interface BarApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -35,7 +35,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "foo", description = "the foo API")
@Tag(name = "Foo", description = "the Foo API")
public interface FooApi {
default Optional<NativeWebRequest> getRequest() {