fix procedure with only inactive group

This commit is contained in:
Eric Leroy-Terquem 2022-11-09 12:54:46 +01:00
parent 10ae0f3ce5
commit 7e79fc8c3b

View file

@ -0,0 +1,17 @@
namespace :after_party do
desc 'Deployment task: update_procedure_with_only_inactive_instructor_group'
task update_procedure_with_only_inactive_instructor_group: :environment do
puts "Running deploy task 'update_procedure_with_only_inactive_instructor_group'"
# Put your task implementation HERE.
Procedure.all.filter do |p|
p.groupe_instructeurs.actif.count == 0
end.each do |p|
p.groupe_instructeurs.first.update(closed: false)
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