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

module Backup
  class Builds < Backup::Files
    def initialize(progress)
      super(progress, 'builds', Settings.gitlab_ci.builds_path)
    end

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