Skip to content

Commit

Permalink
fix: AuthenticationController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladik-gif committed Oct 9, 2024
1 parent 52e3b13 commit 7861930
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ public class AuthenticationController {
private static final String LOGOUT = "/logout";

@Operation(summary = "Registration a new contact", responses = {
@ApiResponse(responseCode = "201", description = SUCCESSFULLY_REGISTERED,
content = @Content(schema = @Schema(implementation = AuthResponseDto.class))),
@ApiResponse(responseCode = "201", description = SUCCESSFULLY_REGISTERED),
@ApiResponse(responseCode = "409", description = VALUE_NOT_UNIQUE,
content = @Content(schema = @Schema(implementation = ApiErrorResponseDto.class))),
@ApiResponse(responseCode = "400", description = ERR_SENDING_EMAIL,
Expand Down

0 comments on commit 7861930

Please sign in to comment.