fix procedure with active group and routing nil

This commit is contained in:
Eric Leroy-Terquem 2022-11-09 13:48:54 +01:00
parent 404c71e935
commit 28dfae3ed9

View file

@ -0,0 +1,17 @@
namespace :after_party do
desc 'Deployment task: update_procedure_with_active_group_and_routing_nil'
task update_procedure_with_active_group_and_routing_nil: :environment do
puts "Running deploy task 'update_procedure_with_active_group_and_routing_nil'"
# Put your task implementation HERE.
Procedure.where(routing_enabled: nil).filter do |p|
p.groupe_instructeurs.actif.count > 1
end.each do |p|
p.update(routing_enabled: true)
end
# Update task as completed. If you remove the line below, the task will
# run with every deploy (or every time you call after_party:run).
AfterParty::TaskRecord
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
end
end