Welcome to mirror list, hosted at ThFree Co, Russian Federation.

design_repo_restorer.rb « import_export « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a702c58a7c26e2741ac0391c07d1834ee36d815f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module ImportExport
    class DesignRepoRestorer < RepoRestorer
      def initialize(project:, shared:, path_to_bundle:)
        super(project: project, shared: shared, path_to_bundle: path_to_bundle)

        @repository = project.design_repository
      end

      # `restore` method is handled in super class
    end
  end
end