summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/design_repo_restorer.rb
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