Skip to content

Commit c67dcd1

Browse files
authored
fix: recruiting enum type (#94)
* Recruiting type을 prod와 맞춰주었습니다.
1 parent 85fff39 commit c67dcd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wacruit/src/apps/common/enums.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ class CodeSubmissionResultStatus(Enum):
6464

6565

6666
class RecruitingType(Enum):
67-
ROOKIE = "ROOKIE"
68-
DESIGNER = "DESIGNER"
69-
PROGRAMMER = "PROGRAMMER"
67+
ROOKIE = 1
68+
DESIGNER = 2
69+
PROGRAMMER = 3
7070

7171

7272
class RecruitingApplicationStatus(Enum):

0 commit comments

Comments
 (0)