1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-23 05:40:51 +02:00

fix(#28): typo in validation message for CreateBeerPongTableDto

This commit is contained in:
FreshGuy32 2024-05-19 20:28:58 +00:00
parent 1d4a60bde0
commit 2bd30b2f7b

View file

@ -6,7 +6,7 @@ import jakarta.validation.constraints.Pattern;
import jakarta.validation.constraints.Size;
public class CreateBeerPongTableDto {
@NotNull(message = "Tournametn id end can't be null.")
@NotNull(message = "Tournament id can't be null.")
private Long tournamentId;
@NotNull(message = "Name can't be null.")