✏️ Fix: [#56] InviteCodeUseType choice 필드 값 수정

This commit is contained in:
sm4640
2025-05-16 03:33:33 +09:00
parent 5e9c043974
commit 0f9a994fbc

View File

@@ -9,8 +9,8 @@ class CertificateCodeUseType(models.TextChoices):
PHONE = 'phone', 'phone' PHONE = 'phone', 'phone'
class InviteCodeUseType(models.TextChoices): class InviteCodeUseType(models.TextChoices):
PROJECT = '프로젝트', '프로젝트' PROJECT = 'p', 'p'
HACKATHON = '해커톤', '해커톤' HACKATHON = 'h', 'h'
class NotificationType(models.TextChoices): class NotificationType(models.TextChoices):
INVITE = '초대', '초대' INVITE = '초대', '초대'