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

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Pet", description = "Everything about your Pets")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Store", description = "Access to Petstore orders")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "User", description = "Operations about user")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
/**