Skip to content

Commit

Permalink
feat : TaskBoard.BoardStatus.IN_PROGRESS 로 변경
Browse files Browse the repository at this point in the history
- TaskBoard.BoardStatus.PROGRESS ->  TaskBoard.BoardStatus.IN_PROGRESS

연관 이슈
- #178
  • Loading branch information
oowtl committed Jan 16, 2025
1 parent c17a3b8 commit 6435bd4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public enum BoardCategory {
@Getter
@RequiredArgsConstructor
public enum BoardStatus {
PROGRESS("진행중"), COMPLETED("완료"), SUSPENSION("보류"), PERMISSION_REQUEST("승인 요청");
IN_PROGRESS("진행중"), COMPLETED("완료"), SUSPENSION("보류"), PERMISSION_REQUEST("승인 요청");
private final String description;
}

Expand Down

0 comments on commit 6435bd4

Please sign in to comment.