Skip to content

Commit

Permalink
Merge pull request #1949 from DFE-Digital/fix-update-statuses
Browse files Browse the repository at this point in the history
Fix application_forms:update_statuses task
  • Loading branch information
thomasleese authored Jan 24, 2024
2 parents 77ed7b1 + 9daa3f0 commit 3e76dd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/tasks/application_forms.rake
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ namespace :application_forms do
.order(:id)
.find_each do |application_form|
ApplicationFormStatusUpdater.call(application_form:, user:)
puts "#{application_form.reference}: #{application_form.action_required_by} - #{application_form.status}"
puts "#{application_form.reference}: #{application_form.action_required_by} - " \
"#{application_form.stage} - #{application_form.statuses.join(",")}"
end
end

Expand Down

0 comments on commit 3e76dd6

Please sign in to comment.