Skip to content

Commit 70c950a

Browse files
authored
Merge pull request #105 from sornerol/invited_tournament_status
Add 'invited' as valid tournament status.
2 parents 717da0b + 8401dc8 commit 70c950a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/main/java/io/github/sornerol/chess/pubapi/domain/player/enums/PlayerTournamentStatus.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ public enum PlayerTournamentStatus {
3535
/**
3636
* Player was removed from the tournament by the tournament director
3737
*/
38-
REMOVED("removed");
38+
REMOVED("removed"),
39+
40+
/**
41+
* Player has received an invitation to join the tournament
42+
*/
43+
INVITED("invited");
3944

4045
@Getter
4146
@JsonValue

0 commit comments

Comments
 (0)