NewsBlur/apps/notifications/tasks.py

10 lines
294 B
Python
Raw Normal View History

2020-11-13 12:14:37 -05:00
from celery.task import task
from django.contrib.auth.models import User
from apps.notifications.models import MUserFeedNotification
from utils import log as logging
2020-11-13 12:14:37 -05:00
@task()
def QueueNotifications(feed_id, new_stories):
MUserFeedNotification.push_feed_notifications(feed_id, new_stories)