diff --git a/src/main/java/io/github/sornerol/chess/pubapi/domain/player/enums/PlayerTournamentStatus.java b/src/main/java/io/github/sornerol/chess/pubapi/domain/player/enums/PlayerTournamentStatus.java index 91ef1cd..9795307 100644 --- a/src/main/java/io/github/sornerol/chess/pubapi/domain/player/enums/PlayerTournamentStatus.java +++ b/src/main/java/io/github/sornerol/chess/pubapi/domain/player/enums/PlayerTournamentStatus.java @@ -35,7 +35,12 @@ public enum PlayerTournamentStatus { /** * Player was removed from the tournament by the tournament director */ - REMOVED("removed"); + REMOVED("removed"), + + /** + * Player has received an invitation to join the tournament + */ + INVITED("invited"); @Getter @JsonValue