fix(membership): set reviewed_at in start_review + backfill for app 11
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

This commit is contained in:
Maciej Pienczyn 2026-03-30 15:28:24 +02:00
parent 7c3daaa4f2
commit 3d14d3860e

View File

@ -751,6 +751,7 @@ def admin_membership_start_review(app_id):
application.status = 'under_review' application.status = 'under_review'
application.reviewed_by_id = current_user.id application.reviewed_by_id = current_user.id
application.reviewed_at = datetime.now()
# Add to workflow history # Add to workflow history
history = application.workflow_history or [] history = application.workflow_history or []