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: 4ef76b0aaf34dcbc8cfab3e3283925bcb776007e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Backup
  class Artifacts < Backup::Files
    def initialize(progress)
      super(progress, 'artifacts', JobArtifactUploader.root, excludes: ['tmp'])
    end

    override :human_name
    def human_name
      _('artifacts')
    end
  end
end