✏️ Fix: [#25] certificatecodeusetype 값 영어로 수정

This commit is contained in:
sm4640
2025-05-15 00:03:22 +09:00
parent 185e23b813
commit 5352f16eeb

View File

@@ -5,8 +5,8 @@ class GenderChoices(models.TextChoices):
WOMAN = '', '여성' WOMAN = '', '여성'
class CertificateCodeUseType(models.TextChoices): class CertificateCodeUseType(models.TextChoices):
EMAIL = '이메일', '이메일' EMAIL = 'email', 'email'
PHONE = '휴대폰', '휴대폰' PHONE = 'phone', 'phone'
class InviteCodeUseType(models.TextChoices): class InviteCodeUseType(models.TextChoices):
PROJECT = '프로젝트', '프로젝트' PROJECT = '프로젝트', '프로젝트'