From dd67f7a18b8c32f1c5207f496e184434472a6ed2 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Fri, 2 May 2025 19:02:22 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Feat:=20[#41]=20=EC=B4=88=EB=8C=80?= =?UTF-8?q?=20choice=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/models/choiceModels.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common/models/choiceModels.py b/common/models/choiceModels.py index f2ea76e..73b72d3 100644 --- a/common/models/choiceModels.py +++ b/common/models/choiceModels.py @@ -11,3 +11,11 @@ class CertificateCodeUseType(models.TextChoices): class InviteCodeUseType(models.TextChoices): PROJECT = '프로젝트', '프로젝트' HACKATHON = '해커톤', '해커톤' + +class NotificationType(models.TextChoices): + INVITE = '초대', '초대' + +class InvitationStatus(models.TextChoices): + PENDING = '대기', '대기' + ACCEPTED = '수락', '수락' + REJECTED = '거절', '거절' \ No newline at end of file