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

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

module Backup
  class Lfs < Backup::Files
    def initialize(progress)
      super(progress, 'lfs', Settings.lfs.storage_path)
    end

    override :human_name
    def human_name
      _('lfs objects')
    end
  end
end