Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 celeryTasks.py

View raw Download
text/x-script.python • 439 B
Python script, ASCII text executable
        
            
1
import time
2
from celery import shared_task
3
from app import db
4
from models import *
5
6
7
@shared_task(ignore_result=False)
8
def sendNotification(notificationID, users, level):
9
notification = db.session.get(Notification, notificationID)
10
11
for user in users:
12
db.session.add(UserNotification(db.session.get(User, user), notification, level))
13
db.session.commit()
14
15
return 0 # notification sent successfully
16