From 5352f16eebe96d8468171b3b6e8e20708223ae0f Mon Sep 17 00:00:00 2001 From: sm4640 Date: Thu, 15 May 2025 00:03:22 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix:=20[#25]=20certificate?= =?UTF-8?q?codeusetype=20=EA=B0=92=20=EC=98=81=EC=96=B4=EB=A1=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/models/choiceModels.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/models/choiceModels.py b/common/models/choiceModels.py index 73b72d3..0168b50 100644 --- a/common/models/choiceModels.py +++ b/common/models/choiceModels.py @@ -5,8 +5,8 @@ class GenderChoices(models.TextChoices): WOMAN = '여', '여성' class CertificateCodeUseType(models.TextChoices): - EMAIL = '이메일', '이메일' - PHONE = '휴대폰', '휴대폰' + EMAIL = 'email', 'email' + PHONE = 'phone', 'phone' class InviteCodeUseType(models.TextChoices): PROJECT = '프로젝트', '프로젝트'