Merge pull request #476 from sartography/bug/no-assignment-tasks-639

Fixes #639 - Pending Approvals Panel No longer displaying
This commit is contained in:
Dan Funk 2022-02-27 19:37:00 -05:00 committed by GitHub
commit 1dfebf9f1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -992,6 +992,7 @@ class WorkflowService(object):
# date=datetime.utcnow(), <=== For future reference, NEVER do this. Let the database set the time. # date=datetime.utcnow(), <=== For future reference, NEVER do this. Let the database set the time.
) )
db.session.add(task_event) db.session.add(task_event)
db.session.commit()
@staticmethod @staticmethod
def extract_form_data(latest_data, task): def extract_form_data(latest_data, task):