blob: fee850b2310f2dc1a4dfb135c77a0fe6f42274d7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | namespace :import do
  desc "Notify parent imports when children finish"
  task notify_parent: :environment do
    ParentImportNotifier.notify_when_finished
  end
  desc "Mark old unfinished imports as 'aborted'"
  task abort_old: :environment do
    Import.abort_old
  end
end
 |