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

builds.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51a68ca933dac58371b4d2185acfff07c9aa41ae (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 Builds < Backup::Files
    attr_reader :progress

    def initialize(progress)
      @progress = progress

      super('builds', Settings.gitlab_ci.builds_path)
    end

    def human_name
      _('builds')
    end
  end
end