Files
ibapp-backend/core/apps/notifications/utils/notify_user.py
2025-10-28 16:03:54 +05:00

8 lines
300 B
Python

from core.apps.notifications.models import Notification
from core.apps.notifications.utils.send_notification import send_notification
def notify_user(user, title, body):
tokens = Notification.objects.filter(user=user)
for token in tokens:
send_notification(token.token, title, body)