Class: Backups::AllJob

Inherits:
ApplicationJob show all
Defined in:
app/jobs/backups/all_job.rb

Instance Method Summary collapse

Instance Method Details

#performObject



3
4
5
6
7
# File 'app/jobs/backups/all_job.rb', line 3

def perform
  Backups.databases.each_key do |name|
    DatabaseJob.perform_later(name)
  end
end