Private
Public Access
1
0

move some tasks to medium priority queue

This commit is contained in:
Sander Roosendaal
2020-10-20 13:49:09 +02:00
parent a5cdbc520f
commit 25e0badab9
2 changed files with 3 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ def plannedsession_comment_view(request,id=0,userid=0):
pass
if u != request.user and u != r.user:
ocr = Rower.objects.get(user=u)
res = myqueue(queuelow,
res = myqueue(queue,
handle_sendemailnewresponse,
u.first_name,
u.last_name,
@@ -109,7 +109,7 @@ def plannedsession_comment_view(request,id=0,userid=0):
if follower.user:
othername = follower.user.first_name+' '+follower.user.last_name
email = follower.emailaddress
res = myqueue(queuelow,
res = myqueue(queue,
handle_sendemailnewresponse,
othername,'',email,
request.user.first_name,

View File

@@ -4070,7 +4070,7 @@ def workout_comment_view(request,id=0):
a_messages.info(u,message)
if u != request.user and u != r.user:
ocr = Rower.objects.get(user=u)
res = myqueue(queuelow,
res = myqueue(queue,
handle_sendemailnewresponse,
u.first_name,
u.last_name,