Skip to content
Snippets Groups Projects
Commit 51ecbdd1 authored by Administrator's avatar Administrator
Browse files

Correctly handle todo.is_done in sending todo mails

parent bf1c2f09
No related branches found
No related tags found
No related merge requests found
......@@ -478,7 +478,10 @@ def send_protocol_async(protocol_id, show_private):
def send_todomails_async(protocol_id):
with app.app_context():
protocol = Protocol.query.filter_by(id=protocol_id).first()
all_todos = Todo.query.filter(Todo.done == False).all()
all_todos = [
todo for todo in Todo.query.filter.all()
if not todo.is_done()
]
users = {user for todo in all_todos for user in todo.get_users()}
grouped_todos = {
user: [todo for todo in all_todos if user in todo.get_users()]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment