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

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

module Backup
  class Artifacts < Backup::Files
    attr_reader :progress

    def initialize(progress)
      @progress = progress

      super('artifacts', JobArtifactUploader.root, excludes: ['tmp'])
    end

    def human_name
      _('artifacts')
    end
  end
end