Merge pull request #8025 from E-L-T/fix-procedure-with-only-inactive-group
Fix procedure with only inactive group
This commit is contained in:
commit
404c71e935
1 changed files with 17 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue