mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
26 lines
469 B
Ruby
26 lines
469 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Backup
|
|
module Cli
|
|
module Tasks
|
|
class Repositories < Task
|
|
def self.id = 'repositories'
|
|
|
|
def human_name = _('repositories')
|
|
|
|
def destination_path = 'repositories'
|
|
|
|
def destination_optional = true
|
|
|
|
private
|
|
|
|
def target
|
|
Gitlab::Backup::Cli::Targets::Repositories.new(context)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|