mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:29:22 +08:00
13 lines
297 B
Ruby
13 lines
297 B
Ruby
require "backup_restore/backup_restore"
|
|
|
|
module Jobs
|
|
class CreateDailyBackup < Jobs::Base
|
|
sidekiq_options retry: false
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.backup_daily?
|
|
BackupRestore.backup!(Discourse.system_user.id, publish_to_message_bus: false)
|
|
end
|
|
end
|
|
end
|