add after party

This commit is contained in:
Eric Leroy-Terquem 2022-10-26 09:51:54 +02:00
parent b51770c151
commit cdaaf09fd8

View file

@ -0,0 +1,18 @@
namespace :after_party do
desc 'Deployment task: update_procedure_routing_enabled'
task update_procedure_routing_enabled: :environment do
puts "Running deploy task 'update_procedure_routing_enabled'"
# Put your task implementation HERE.
Procedure.where(routing_enabled: true)
.filter do |p|
p.groupe_instructeurs.actif.count < 2
end.each do |p|
p.update(routing_enabled: 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