mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 12:46:33 +08:00
18 lines
365 B
Ruby
18 lines
365 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "backup_restore"
|
|
|
|
module Jobs
|
|
class CreateBackup < ::Jobs::Base
|
|
sidekiq_options retry: false
|
|
|
|
def execute(args)
|
|
BackupRestore.backup!(
|
|
Discourse.system_user.id,
|
|
publish_to_message_bus: false,
|
|
with_uploads: SiteSetting.backup_with_uploads,
|
|
fork: false,
|
|
)
|
|
end
|
|
end
|
|
end
|