[Java][Spring] fix default response code (#14399)

This commit is contained in:
Oleh Kurpiak
2023-01-11 14:34:58 +02:00
committed by GitHub
parent 50e295e3c6
commit 5dbfea6ecc
18 changed files with 70 additions and 70 deletions

View File

@@ -55,7 +55,7 @@ public interface UserApi {
description = "This can only be done by the logged in user.",
tags = { "user" },
responses = {
@ApiResponse(responseCode = "200", description = "successful operation")
@ApiResponse(responseCode = "default", description = "successful operation")
}
)
@RequestMapping(
@@ -81,7 +81,7 @@ public interface UserApi {
summary = "Creates list of users with given input array",
tags = { "user" },
responses = {
@ApiResponse(responseCode = "200", description = "successful operation")
@ApiResponse(responseCode = "default", description = "successful operation")
}
)
@RequestMapping(
@@ -107,7 +107,7 @@ public interface UserApi {
summary = "Creates list of users with given input array",
tags = { "user" },
responses = {
@ApiResponse(responseCode = "200", description = "successful operation")
@ApiResponse(responseCode = "default", description = "successful operation")
}
)
@RequestMapping(
@@ -244,7 +244,7 @@ public interface UserApi {
summary = "Logs out current logged in user session",
tags = { "user" },
responses = {
@ApiResponse(responseCode = "200", description = "successful operation")
@ApiResponse(responseCode = "default", description = "successful operation")
}
)
@RequestMapping(