✨ Feat: [#41] notification 앱 생성 및 알림 조회 구현
This commit is contained in:
19
notifications/services.py
Normal file
19
notifications/services.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from users.models import *
|
||||
from .models import *
|
||||
|
||||
from common.models.choiceModels import *
|
||||
|
||||
|
||||
|
||||
# 알림 관련 서비스 로직
|
||||
class NotifiationService:
|
||||
@staticmethod
|
||||
def set_content():
|
||||
pass
|
||||
|
||||
@staticmethod
|
||||
def create_notification(user: User, note_type: NotificationType):
|
||||
return Notification.objects.create(
|
||||
user = user,
|
||||
note_type=note_type
|
||||
)
|
||||
Reference in New Issue
Block a user